summaryrefslogtreecommitdiffstats
path: root/system/vms/doinst.sh
diff options
context:
space:
mode:
author Nikos Giotis2018-08-26 05:50:57 +0200
committer Willy Sudiarto Raharjo2018-09-01 02:32:23 +0200
commitc73367005b0d714c90c3cf89589dcbb0b34fa83a (patch)
treed3dfda6718959231ebf5bd0e0e9fbe760d0f6df0 /system/vms/doinst.sh
parentec62aff721553a3becf47203c7b2aba04965e18f (diff)
downloadslackbuilds-c73367005b0d714c90c3cf89589dcbb0b34fa83a.tar.gz
system/vms: Added (Bash scripts for QEMU).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/vms/doinst.sh')
-rw-r--r--system/vms/doinst.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/system/vms/doinst.sh b/system/vms/doinst.sh
new file mode 100644
index 0000000000..7a5191e6fa
--- /dev/null
+++ b/system/vms/doinst.sh
@@ -0,0 +1,26 @@
+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.vms.new
+config etc/rc.d/rc.vms.conf.new