diff options
author | Nikos Giotis <nikos.giotis@gmail.com> | 2019-04-12 22:44:58 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-04-12 22:44:58 +0700 |
commit | 99822beef8cc3dca96457dd2aecd0723032b84d2 (patch) | |
tree | c9fb81818850ed976629440864382646dffa46fd /system/multipath-tools/doinst.sh | |
parent | a1e55b482a37997927da498fc15124ba1ad79a71 (diff) | |
download | slackbuilds-99822beef8cc3dca96457dd2aecd0723032b84d2.tar.gz |
system/multipath-tools: Updated for version 0.7.8.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/multipath-tools/doinst.sh')
-rw-r--r-- | system/multipath-tools/doinst.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/system/multipath-tools/doinst.sh b/system/multipath-tools/doinst.sh new file mode 100644 index 0000000000..b845f6b1b1 --- /dev/null +++ b/system/multipath-tools/doinst.sh @@ -0,0 +1,26 @@ +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... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms etc/rc.d/rc.multipathd.new +preserve_perms etc/multipath.conf.new |