slackbuilds_ponce/system/motion/doinst.sh
Pierre Cazenave 2eff1be223 system/motion: Added (software motion detector)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
2010-09-08 20:28:24 -04: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