aboutsummaryrefslogtreecommitdiff
path: root/system/xen/doinst.sh
diff options
context:
space:
mode:
authormario <mario@slackverse.org>2013-02-10 02:52:17 -0600
committerErik Hanson <erik@slackbuilds.org>2013-02-14 00:26:35 -0600
commitc32a6ad81353c0d124c3150ccb677ad4224a7f61 (patch)
tree4cbad4c5e1c59d98d56ad72d761137aec51f4ae2 /system/xen/doinst.sh
parent7f2f69966e97765c8fd54a70a29e8cafe006028e (diff)
system/xen: Added (the Xen virtualization hypervisor)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/xen/doinst.sh')
-rw-r--r--system/xen/doinst.sh38
1 files changed, 38 insertions, 0 deletions
diff --git a/system/xen/doinst.sh b/system/xen/doinst.sh
new file mode 100644
index 000000000000..6464a96a2a58
--- /dev/null
+++ b/system/xen/doinst.sh
@@ -0,0 +1,38 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ # If there's no config file by that name, mv it over:
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ # toss the redundant copy
+ rm $NEW
+ fi
+ # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+preserve_perms() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ if [ -e $OLD ]; then
+ cp -a $OLD ${NEW}.incoming
+ cat $NEW > ${NEW}.incoming
+ mv ${NEW}.incoming $NEW
+ fi
+ config $NEW
+}
+
+preserve_perms etc/rc.d/rc.xen-watchdog.new
+preserve_perms etc/rc.d/rc.xencommons.new
+preserve_perms etc/rc.d/rc.xend.new
+preserve_perms etc/rc.d/rc.xendomains.new
+config etc/xen/oxenstored.conf.new
+config etc/xen/xm-config.xml.new
+config etc/xen/xend-pci-quirks.sxp.new
+config etc/xen/xend-pci-permissive.sxp.new
+config etc/xen/xend-config.sxp.new
+config etc/xen/xl.conf.new
+config etc/qemu/target-x86_64.conf.new
+config etc/default/xencommons.new
+config etc/default/xendomains.new
+