slackbuilds_ponce/network/open-iscsi/doinst.sh
Wayne Cuddy f28007bfe3
network/open-iscsi: Fix doinst.sh.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2019-04-05 07:39:04 +07:00

16 lines
376 B
Bash

config() {
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 [ "$(md5sum <$OLD)" = "$(md5sum <$NEW)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/iscsi/iscsid.conf
config etc/iscsi/initiatorname.iscsi