aboutsummaryrefslogtreecommitdiff
path: root/network/open-isns/doinst.sh
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2023-06-20 03:40:48 -0400
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2023-06-23 07:48:05 +0700
commitd350d81a8c8002a775f77f83120309293faca267 (patch)
tree6bd2865ddd1a226e228a88b335716d2285174761 /network/open-isns/doinst.sh
parentdcbef36c9809dfb91f5b8378d1e5be46cb7dd9e7 (diff)
network/open-isns: Use template config().
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/open-isns/doinst.sh')
-rw-r--r--network/open-isns/doinst.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/network/open-isns/doinst.sh b/network/open-isns/doinst.sh
index 8fad217bd664e..ffe6583a6782d 100644
--- a/network/open-isns/doinst.sh
+++ b/network/open-isns/doinst.sh
@@ -1,17 +1,18 @@
+# 20230620 bkw: Please stick with the config() from our template.
config() {
- NEW="${1}.new"
- OLD="$1"
+ 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 [ "$(md5sum <$OLD)" = "$(md5sum <$NEW)" ]; then
+ 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/isns/isnsd.conf
-config etc/isns/isnsdd.conf
-config etc/isns/isnsadm.conf
+config etc/isns/isnsd.conf.new
+config etc/isns/isnsdd.conf.new
+config etc/isns/isnsadm.conf.new