diff options
author | Mario Preksavec <mario at slackware dot hr> | 2019-05-18 06:43:50 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-05-18 06:43:50 +0700 |
commit | 4d8764c7cb268c2946c4e7b646fea759671825b1 (patch) | |
tree | b2007ac79f0d96adeb3c619e078c2bdea9aeaee7 /system/dlm/doinst.sh | |
parent | 832fba7887d31db10bf533579caad343531896e7 (diff) |
system/dlm: Added (Distributed Lock Manager).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/dlm/doinst.sh')
-rw-r--r-- | system/dlm/doinst.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/system/dlm/doinst.sh b/system/dlm/doinst.sh new file mode 100644 index 0000000000000..6aa62bb17a193 --- /dev/null +++ b/system/dlm/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.dlm.new +config etc/default/dlm.new |