summaryrefslogtreecommitdiffstats
path: root/system/xen/doinst.sh
diff options
context:
space:
mode:
author mario2010-10-10 21:17:24 +0200
committer Robby Workman2010-10-10 21:17:24 +0200
commit602d2eb9eed94819b5cf4480ef403639afe028f5 (patch)
tree5c08c37f6f960a111af84c5aa58466c95947e73d /system/xen/doinst.sh
parentf5fdea9bb70cc8950ab3e5c1ff0437bc7351cf52 (diff)
downloadslackbuilds-602d2eb9eed94819b5cf4480ef403639afe028f5.tar.gz
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.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/system/xen/doinst.sh b/system/xen/doinst.sh
new file mode 100644
index 0000000000..bedcc76766
--- /dev/null
+++ b/system/xen/doinst.sh
@@ -0,0 +1,31 @@
+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.xend.new
+preserve_perms etc/rc.d/rc.xendomains.new
+config etc/xen/xend-config.sxp.new
+config etc/xen/xend-pci-permissive.sxp.new
+config etc/xen/xend-pci-quirks.sxp.new
+config etc/xen/xendomains.config.new
+config etc/xen/xm-config.xml.new