there is a little bug for priority level to stop in the /etc/rc.d/init.d/zm
it's a little detail, but there is a long time this detail is here.
# chkconfig: 2345(*) 99(**) 99(***)
* - runlevel -ok
** priority to start - ok
*** priority to stop - ohohoh !!!
The priority to start is low: 99 (the last), but priority to stop is low: 99 (the last after mysql, network,..), this is create a little bug when you when to stop/reboot pc.
so change line in /ZoneMinder-1.22.0/scripts/zm.in
-# chkconfig: 2345 99 99
by
-# chkconfig: 2345 99 01
Code: Select all
--- ZoneMinder-1.22.0/scripts/zm.in.ori 2005-12-16 13:21:29.000000000 +0100
+++ ZoneMinder-1.22.0/scripts/zm.in 2005-12-16 13:21:29.000000000 +0100
@@ -1,6 +1,6 @@
#!/bin/sh
# description: Control ZoneMinder as a Service
-# chkconfig: 2345 99 99
+# chkconfig: 2345 99 01
# Source function library.
. /etc/rc.d/init.d/functions
ps , i love you Phil (for your job)