mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
network/open-isns: Update script.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
67f5f857da
commit
f304ce3885
2 changed files with 6 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
PRGNAM=open-isns
|
||||
VERSION=${VERSION:-0.99}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
|
Loading…
Reference in a new issue