summaryrefslogtreecommitdiffstats
path: root/system/sargon/doinst.sh
diff options
context:
space:
mode:
author Sergey Poznyakoff2019-12-01 02:09:33 +0100
committer Willy Sudiarto Raharjo2019-12-01 02:09:33 +0100
commit7f8489d5ef1a04f0eff9e58f6d6fd6fb28b59908 (patch)
tree4eb0c85179753ed5b76902d21a5148a65183885a /system/sargon/doinst.sh
parent7f184736aaab928e8cdf8b1e1f17fe169b82df6d (diff)
downloadslackbuilds-7f8489d5ef1a04f0eff9e58f6d6fd6fb28b59908.tar.gz
system/sargon: Added (User privilege system for docker).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/sargon/doinst.sh')
-rw-r--r--system/sargon/doinst.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/system/sargon/doinst.sh b/system/sargon/doinst.sh
new file mode 100644
index 0000000000..8c4165ff18
--- /dev/null
+++ b/system/sargon/doinst.sh
@@ -0,0 +1,14 @@
+#! /bin/sh
+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...
+}
+
+config etc/rc.d/rc.sargon.new