summaryrefslogtreecommitdiffstats
path: root/system/xen/doinst.sh
diff options
context:
space:
mode:
author mario2011-07-17 17:43:12 +0200
committer Robby Workman2011-07-22 05:52:10 +0200
commit29f2e42098ae40204d9009b56d3e1f4145bd5b30 (patch)
tree7641cd78ac97d41518fc57ebbf65bb57928dd764 /system/xen/doinst.sh
parent47ac89cd6c90eff8dcef43bf03a63d3f3fad8faa (diff)
downloadslackbuilds-29f2e42098ae40204d9009b56d3e1f4145bd5b30.tar.gz
system/xen: Added (the Xen virtualization hypervisor)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'system/xen/doinst.sh')
-rw-r--r--system/xen/doinst.sh34
1 files changed, 34 insertions, 0 deletions
diff --git a/system/xen/doinst.sh b/system/xen/doinst.sh
new file mode 100644
index 0000000000..cf6b409d63
--- /dev/null
+++ b/system/xen/doinst.sh
@@ -0,0 +1,34 @@
+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/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
+