diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2012-10-07 16:46:02 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-10-07 16:46:02 -0500 |
commit | 479449eb45f12ba4579040214eba596cb84b9122 (patch) | |
tree | 731e37bc4dc5515a256165df2dfb4b45bcfbaeaa /system/xen/doinst.sh | |
parent | 90dde055a6309c6b5d8c08830a2b461c0aab137e (diff) | |
download | slackbuilds-479449eb45f12ba4579040214eba596cb84b9122.tar.gz |
Revert "system/xen: Added (updated to version 4.2.0 from 13.37 repo)"
This reverts commit 66e00ebfd7c72e830fe29536604a045d8b3fb4ca.
The branch containing this commit was not intended for merging,
as it was not deemed ready by the xen SBo maintainer (mario).
Apologies to mario for the oversight - I should have named this
branch differently so that its meaning was clear :/
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/xen/doinst.sh')
-rw-r--r-- | system/xen/doinst.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/system/xen/doinst.sh b/system/xen/doinst.sh deleted file mode 100644 index cf6b409d63..0000000000 --- a/system/xen/doinst.sh +++ /dev/null @@ -1,34 +0,0 @@ -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 - |