summaryrefslogtreecommitdiffstats
path: root/system/motion/doinst.sh
diff options
context:
space:
mode:
author Pierre Cazenave <pwcazenave at gmail {dot} com>2010-09-08 20:28:24 -0400
committer dsomero <xgizzmo@slackbuilds.org>2010-09-08 20:28:24 -0400
commit2eff1be223edcf19a2be96ba29d58569ed4a6da9 (patch)
tree7b5f174f66c6e6fa160642834942911ab30766d4 /system/motion/doinst.sh
parentd9a9a8a33055fa36f1239a59640636898db6a6d8 (diff)
downloadslackbuilds-2eff1be223edcf19a2be96ba29d58569ed4a6da9.tar.gz
slackbuilds-2eff1be223edcf19a2be96ba29d58569ed4a6da9.tar.xz
system/motion: Added (software motion detector)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/motion/doinst.sh')
-rw-r--r--system/motion/doinst.sh15
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
+