diff options
author | Martin Lefebvre <dadexter@sekurity.com> | 2010-05-11 20:02:03 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:02:03 +0200 |
commit | fce259cdc46047da7f40c2d1c6e91af293674a85 (patch) | |
tree | 05e771c258a81d287fa1720fc1fb5b54c79db8a0 /system/motion/doinst.sh | |
parent | 4fd7a6d9d4346a0ea09895a4fd991b4f68541825 (diff) | |
download | slackbuilds-fce259cdc46047da7f40c2d1c6e91af293674a85.tar.gz |
system/motion: Added to 12.0 repository
Diffstat (limited to 'system/motion/doinst.sh')
-rw-r--r-- | system/motion/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/motion/doinst.sh b/system/motion/doinst.sh new file mode 100644 index 0000000000..282b54a44c --- /dev/null +++ b/system/motion/doinst.sh @@ -0,0 +1,15 @@ +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/motion-dist.conf.new + |