diff options
author | Sergey Poznyakoff <gray@gnu.org> | 2019-10-05 06:41:14 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-10-05 06:41:14 +0700 |
commit | 4ee42f50aa960d276e37acf49f54f438e5e78220 (patch) | |
tree | 6c9df54c0ba1d9c91f4b50c167fc9a3fdb1bf7cd /system/local-persist/doinst.sh | |
parent | 9806cc87f246985e3547d4e4cb90e8898d7c3083 (diff) |
system/local-persist: Added (Create persistent local volumes).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/local-persist/doinst.sh')
-rw-r--r-- | system/local-persist/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/system/local-persist/doinst.sh b/system/local-persist/doinst.sh new file mode 100644 index 000000000000..9ec9b9d7972f --- /dev/null +++ b/system/local-persist/doinst.sh @@ -0,0 +1,14 @@ +#! /bin/sh +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... +} + +config etc/rc.d/rc.local-persist.new |