summaryrefslogtreecommitdiff
path: root/nix/doinst.sh
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2020-11-30 08:59:41 +0100
committerEugen Wissner <belka@caraus.de>2020-11-30 08:59:41 +0100
commit49066ca33e354d21a10a3a9bd8ebc24d4fbb4ec0 (patch)
treedf0f1f710d0be768a1d2120a83f940382ca99700 /nix/doinst.sh
parentc684e04e112094a439d67faec095d428f8fda822 (diff)
downloadslackbuilder-49066ca33e354d21a10a3a9bd8ebc24d4fbb4ec0.tar.gz
nix: Added
Diffstat (limited to 'nix/doinst.sh')
-rw-r--r--nix/doinst.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/nix/doinst.sh b/nix/doinst.sh
new file mode 100644
index 0000000..032197f
--- /dev/null
+++ b/nix/doinst.sh
@@ -0,0 +1,25 @@
+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.nix.new