From 6149f3636948188bbad6377fa1f4425591f6fe22 Mon Sep 17 00:00:00 2001 From: V'yacheslav Stetskevych Date: Fri, 9 Jul 2010 02:38:22 -0400 Subject: system/ZoneMinder: Added (security and surveillance solution) Signed-off-by: dsomero --- system/ZoneMinder/doinst.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 system/ZoneMinder/doinst.sh (limited to 'system/ZoneMinder/doinst.sh') diff --git a/system/ZoneMinder/doinst.sh b/system/ZoneMinder/doinst.sh new file mode 100644 index 0000000000..45b15510f2 --- /dev/null +++ b/system/ZoneMinder/doinst.sh @@ -0,0 +1,33 @@ +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-/README.SLACKWARE" +echo "" +echo " If you are upgrading, you will need to run the zmupdate.pl script:" +echo " /usr/bin/zmupdate.pl version= [--user= --pass=]" +echo "" + -- cgit v1.2.3