slackbuilds/ap/motion/doinst.sh
Gwenhael Le Moine 23668dbd25 add motion git
Signed-off-by: Gwenhael Le Moine <cycojesus@titframboise.le-moine.org>
2016-07-24 11:16:27 +02:00

15 lines
381 B
Bash

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