summaryrefslogtreecommitdiffstats
path: root/system/ZoneMinder/doinst.sh
diff options
context:
space:
mode:
author Gene Baxter2015-01-02 08:06:57 +0100
committer Willy Sudiarto Raharjo2015-01-02 08:06:57 +0100
commit21dd16c0e1bda70142051e14c513c6ad3bc5a031 (patch)
tree0c291d54f40f150a2ffec7e551e78c8fafbde9d0 /system/ZoneMinder/doinst.sh
parenta3f315595ab14ea4b590404623ae2516200ede20 (diff)
downloadslackbuilds-21dd16c0e1bda70142051e14c513c6ad3bc5a031.tar.gz
system/ZoneMinder: Added (video camera security and surveillance).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/ZoneMinder/doinst.sh')
-rw-r--r--system/ZoneMinder/doinst.sh37
1 files changed, 37 insertions, 0 deletions
diff --git a/system/ZoneMinder/doinst.sh b/system/ZoneMinder/doinst.sh
new file mode 100644
index 0000000000..09e7f396ef
--- /dev/null
+++ b/system/ZoneMinder/doinst.sh
@@ -0,0 +1,37 @@
+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...
+}
+
+preserve_perms() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ if [ -e $OLD ]; then
+ cp -a $OLD ${NEW}.incoming
+ cat $NEW > ${NEW}.incoming
+ mv ${NEW}.incoming $NEW
+ fi
+ config $NEW
+}
+
+config etc/rc.d/rc.zm.new
+config etc/zm/zm.conf.new
+config etc/zm/zm_apache.conf.new
+config etc/logrotate.d/zm.new
+preserve_perms etc/rc.d/rc.zm.new
+
+echo ""
+echo " If this is a new installation, you will need to create a MySQL database"
+echo " for ZoneMinder to use. See /usr/doc/ZoneMinder-<version>/README.SLACKWARE"
+echo ""
+echo " If you are upgrading, you will need to run the zmupdate.pl script:"
+echo " /usr/bin/zmupdate.pl version=<from version> [--user=<my_database_user> --pass=<my_database_pass>]"
+echo ""