diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2010-05-12 23:33:32 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:33:32 +0200 |
commit | 0d9db4957e2f6cf5726c0f8449fa3cd336b36880 (patch) | |
tree | c19f9a4f026854a413b0689114806cc8adad42af /system/foremost/doinst.sh | |
parent | d4e5acf32462482affa7ac430890944478694f17 (diff) | |
download | slackbuilds-0d9db4957e2f6cf5726c0f8449fa3cd336b36880.tar.gz |
system/foremost: Added to 12.2 repository
Diffstat (limited to 'system/foremost/doinst.sh')
-rw-r--r-- | system/foremost/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/system/foremost/doinst.sh b/system/foremost/doinst.sh new file mode 100644 index 0000000000..908b49e64d --- /dev/null +++ b/system/foremost/doinst.sh @@ -0,0 +1,14 @@ +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/foremost.conf.new |