network/open-isns: Update script.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Wayne Cuddy 2019-04-12 22:00:38 +07:00 committed by Willy Sudiarto Raharjo
parent 67f5f857da
commit f304ce3885
2 changed files with 6 additions and 5 deletions

View file

@ -1,10 +1,11 @@
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
NEW="${1}.new"
OLD="$1"
# 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
elif [ "$(md5sum <$OLD)" = "$(md5sum <$NEW)" ]; then
# toss the redundant copy
rm $NEW
fi
@ -13,4 +14,4 @@ config() {
config etc/isns/isnsd.conf
config etc/isns/isnsdd.conf
config etc/isnsisnsadm.conf
config etc/isns/isnsadm.conf

View file

@ -24,7 +24,7 @@
PRGNAM=open-isns
VERSION=${VERSION:-0.99}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then