summaryrefslogtreecommitdiffstats
path: root/system/ZoneMinder/doinst.sh
diff options
context:
space:
mode:
author Matteo Bernardini2012-12-14 17:29:58 +0100
committer Matteo Bernardini2012-12-15 15:13:37 +0100
commit58442929f2f8d8f09b8223997ace0186d1225c20 (patch)
tree94efde42d7ee384e5a9b21d8eb40409779df9c06 /system/ZoneMinder/doinst.sh
parent979c4b9f632c5ef4b481dcaa26ce20f4c3dcf6e5 (diff)
downloadslackbuilds-58442929f2f8d8f09b8223997ace0186d1225c20.tar.gz
system/ZoneMinder: Removed.
Unmaintained and not compatible yet with fmpeg-0.11.x Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'system/ZoneMinder/doinst.sh')
-rw-r--r--system/ZoneMinder/doinst.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/system/ZoneMinder/doinst.sh b/system/ZoneMinder/doinst.sh
deleted file mode 100644
index 45b15510f2..0000000000
--- a/system/ZoneMinder/doinst.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-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...
-}
-
-# Keep same perms on rc.zm.new:
-if [ -e etc/rc.d/rc.zm ]; then
- cp -a etc/rc.d/rc.zm etc/rc.d/rc.zm.new.incoming
- cat etc/rc.d/rc.zm.new > etc/rc.d/rc.zm.new.incoming
- mv etc/rc.d/rc.zm.new.incoming etc/rc.d/rc.zm.new
-fi
-
-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
-
-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 ""
-