Sync up quotes and space differences frmo zma_to_thread
This commit is contained in:
parent
a437c407a7
commit
7b878a4c64
|
@ -1,6 +1,6 @@
|
|||
# ==========================================================================
|
||||
############################################################################
|
||||
#
|
||||
# ZoneMinder Logger Module, $Date$, $Revision$
|
||||
# ZoneMinder Logger Module
|
||||
# Copyright (C) 2001-2008 Philip Coombes
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
|
@ -17,7 +17,7 @@
|
|||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
# ==========================================================================
|
||||
############################################################################
|
||||
#
|
||||
# This module contains the debug definitions and functions used by the rest
|
||||
# of the ZoneMinder scripts
|
||||
|
@ -81,11 +81,11 @@ our @EXPORT = qw();
|
|||
|
||||
our $VERSION = $ZoneMinder::Base::VERSION;
|
||||
|
||||
# ==========================================================================
|
||||
############################################################################
|
||||
#
|
||||
# Logger Facilities
|
||||
#
|
||||
# ==========================================================================
|
||||
############################################################################
|
||||
|
||||
require ZoneMinder::Config;
|
||||
|
||||
|
|
|
@ -84,9 +84,7 @@ if ( !$command ) {
|
|||
}
|
||||
|
||||
# PP - Sane state check
|
||||
Debug("StartisActiveSSantiyCheck");
|
||||
isActiveSanityCheck();
|
||||
Debug("Done isActiveSSantiyCheck");
|
||||
|
||||
# Move to the right place
|
||||
chdir($Config{ZM_PATH_WEB})
|
||||
|
@ -253,15 +251,15 @@ if ( $command =~ /^(?:start|restart)$/ ) {
|
|||
}
|
||||
|
||||
if ( $Config{ZM_RUN_AUDIT} ) {
|
||||
if ( $Server and exists $$Server{'zmaudit'} and ! $$Server{'zmaudit'} ) {
|
||||
Debug("Not running zmaudit.pl because it is turned off for this server.");
|
||||
if ( $Server and exists $$Server{zmaudit} and ! $$Server{zmaudit} ) {
|
||||
Debug('Not running zmaudit.pl because it is turned off for this server.');
|
||||
} else {
|
||||
runCommand('zmdc.pl start zmaudit.pl -c');
|
||||
}
|
||||
}
|
||||
if ( $Config{ZM_OPT_TRIGGERS} ) {
|
||||
if ( $Server and exists $$Server{'zmtrigger'} and ! $$Server{'zmtrigger'} ) {
|
||||
Debug("Not running zmtrigger.pl because it is turned off for this server.");
|
||||
if ( $Server and exists $$Server{zmtrigger} and ! $$Server{zmtrigger} ) {
|
||||
Debug('Not running zmtrigger.pl because it is turned off for this server.');
|
||||
} else {
|
||||
runCommand('zmdc.pl start zmtrigger.pl');
|
||||
}
|
||||
|
@ -283,8 +281,8 @@ if ( $command =~ /^(?:start|restart)$/ ) {
|
|||
runCommand('zmdc.pl start zmeventnotification.pl');
|
||||
}
|
||||
}
|
||||
if ( $Server and exists $$Server{'zmstats'} and ! $$Server{'zmstats'} ) {
|
||||
Debug("Not running zmstats.pl because it is turned off for this server.");
|
||||
if ( $Server and exists $$Server{zmstats} and ! $$Server{zmstats} ) {
|
||||
Debug('Not running zmstats.pl because it is turned off for this server.');
|
||||
} else {
|
||||
runCommand('zmdc.pl start zmstats.pl');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue