2019-09-24 00:54:27 +08:00
|
|
|
#!@PERL_EXECUTABLE@ -wT
|
2005-12-16 18:05:29 +08:00
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
#
|
|
|
|
# ZoneMinder Package Control Script, $Date$, $Revision$
|
2008-07-25 17:48:16 +08:00
|
|
|
# Copyright (C) 2001-2008 Philip Coombes
|
2005-12-16 18:05:29 +08:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2016-12-26 23:23:16 +08:00
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2005-12-16 18:05:29 +08:00
|
|
|
#
|
|
|
|
# ==========================================================================
|
2015-04-11 20:39:32 +08:00
|
|
|
|
2005-12-16 18:05:29 +08:00
|
|
|
use strict;
|
|
|
|
use bytes;
|
|
|
|
|
|
|
|
# ==========================================================================
|
|
|
|
#
|
|
|
|
# Don't change anything below here
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
|
2009-06-08 17:11:56 +08:00
|
|
|
@EXTRA_PERL_LIB@
|
2005-12-16 18:05:29 +08:00
|
|
|
use ZoneMinder;
|
|
|
|
use DBI;
|
|
|
|
use POSIX;
|
|
|
|
use Time::HiRes qw/gettimeofday/;
|
2015-04-11 20:39:32 +08:00
|
|
|
use autouse 'Pod::Usage'=>qw(pod2usage);
|
2005-12-16 18:05:29 +08:00
|
|
|
|
|
|
|
# Detaint our environment
|
2016-03-12 05:28:16 +08:00
|
|
|
$ENV{PATH} = '/bin:/usr/bin:/usr/local/bin';
|
2005-12-16 18:05:29 +08:00
|
|
|
$ENV{SHELL} = '/bin/sh' if exists $ENV{SHELL};
|
|
|
|
delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
|
2018-06-07 02:05:58 +08:00
|
|
|
my $store_state=''; # PP - will remember state name passed
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2011-06-21 17:19:10 +08:00
|
|
|
logInit();
|
2005-12-21 01:03:33 +08:00
|
|
|
|
2015-04-11 20:41:07 +08:00
|
|
|
my $command = $ARGV[0]||'';
|
2015-01-07 22:05:16 +08:00
|
|
|
if ( $command eq 'version' ) {
|
2017-09-12 10:12:10 +08:00
|
|
|
print ZoneMinder::Base::ZM_VERSION . "\n";
|
|
|
|
exit(0);
|
2015-01-07 22:05:16 +08:00
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
|
|
|
|
my $state;
|
|
|
|
|
2018-06-07 02:05:58 +08:00
|
|
|
my $dbh = zmDbConnect();
|
2018-12-28 01:22:06 +08:00
|
|
|
Debug("Command: $command");
|
|
|
|
if ( $command and ( $command !~ /^(?:start|stop|restart|status|logrot|version)$/ ) ) {
|
|
|
|
# Check to see if it's a valid run state
|
2019-08-25 23:36:23 +08:00
|
|
|
my $sql = 'SELECT * FROM `States` WHERE `Name`=?';
|
2018-12-28 01:22:06 +08:00
|
|
|
my $sth = $dbh->prepare_cached($sql)
|
|
|
|
or Fatal("Can't prepare '$sql': ".$dbh->errstr());
|
|
|
|
my $res = $sth->execute($command)
|
|
|
|
or Fatal("Can't execute: ".$sth->errstr());
|
|
|
|
if ( $state = $sth->fetchrow_hashref() ) {
|
|
|
|
#$state->{Name} = $command;
|
|
|
|
$state->{Definitions} = [];
|
|
|
|
foreach( split(',', $state->{Definition}) ) {
|
|
|
|
my ( $id, $function, $enabled ) = split(':', $_);
|
|
|
|
push( @{$state->{Definitions}},
|
|
|
|
{ Id=>$id, Function=>$function, Enabled=>$enabled }
|
|
|
|
);
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
2018-12-28 01:22:06 +08:00
|
|
|
$store_state = $command; # PP - Remember the name that was passed to search in DB
|
|
|
|
$command = 'state';
|
|
|
|
} else {
|
|
|
|
$command = undef;
|
2017-09-12 10:12:10 +08:00
|
|
|
}
|
2018-12-28 01:22:06 +08:00
|
|
|
$sth->finish();
|
2018-06-07 02:05:58 +08:00
|
|
|
} # end if not one of the usual commands
|
|
|
|
|
2018-12-28 01:22:06 +08:00
|
|
|
if ( !$command ) {
|
|
|
|
pod2usage(-exitstatus => -1);
|
|
|
|
}
|
|
|
|
|
2015-08-27 00:08:10 +08:00
|
|
|
# PP - Sane state check
|
2015-08-26 23:20:58 +08:00
|
|
|
isActiveSanityCheck();
|
2005-12-16 18:05:29 +08:00
|
|
|
|
|
|
|
# Move to the right place
|
2018-06-07 02:05:58 +08:00
|
|
|
chdir($Config{ZM_PATH_WEB})
|
|
|
|
or Fatal("Can't chdir to '$Config{ZM_PATH_WEB}': $!");
|
|
|
|
|
|
|
|
my $dbg_id = '';
|
|
|
|
|
|
|
|
Info("Command: $command");
|
|
|
|
|
|
|
|
my $retval = 0;
|
|
|
|
|
|
|
|
if ( $command eq 'state' ) {
|
|
|
|
Info("Updating DB: $state->{Name}");
|
2019-08-25 23:36:23 +08:00
|
|
|
my $sql = 'SELECT * FROM `Monitors`' . ($Config{ZM_SERVER_ID} ? ' WHERE `ServerId`=?' : '' ) .' ORDER BY `Id` ASC';
|
2018-06-07 02:05:58 +08:00
|
|
|
my $sth = $dbh->prepare_cached($sql)
|
|
|
|
or Fatal("Can't prepare '$sql': ".$dbh->errstr());
|
|
|
|
my $res = $sth->execute($Config{ZM_SERVER_ID} ? $Config{ZM_SERVER_ID}: ())
|
|
|
|
or Fatal("Can't execute: ".$sth->errstr());
|
2021-05-12 03:27:36 +08:00
|
|
|
while ( my $monitor = $sth->fetchrow_hashref() ) {
|
2018-06-07 02:05:58 +08:00
|
|
|
foreach my $definition ( @{$state->{Definitions}} ) {
|
|
|
|
if ( $monitor->{Id} =~ /^$definition->{Id}$/ ) {
|
|
|
|
$monitor->{NewFunction} = $definition->{Function};
|
|
|
|
$monitor->{NewEnabled} = $definition->{Enabled};
|
2021-05-12 03:27:36 +08:00
|
|
|
last;
|
2017-09-12 10:12:10 +08:00
|
|
|
}
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
2021-05-12 03:27:36 +08:00
|
|
|
next if ! exists $monitor->{NewFunction};
|
|
|
|
$monitor->{NewFunction} = 'None' if !$monitor->{NewFunction};
|
|
|
|
$monitor->{NewEnabled} = 0 if !$monitor->{NewEnabled};
|
2018-06-07 02:05:58 +08:00
|
|
|
if ( $monitor->{Function} ne $monitor->{NewFunction}
|
|
|
|
|| $monitor->{Enabled} ne $monitor->{NewEnabled}
|
|
|
|
) {
|
2019-08-25 23:36:23 +08:00
|
|
|
my $sql = 'UPDATE `Monitors` SET `Function`=?, `Enabled`=? WHERE `Id`=?';
|
2018-06-07 02:05:58 +08:00
|
|
|
my $sth = $dbh->prepare_cached($sql)
|
|
|
|
or Fatal("Can't prepare '$sql': ".$dbh->errstr());
|
|
|
|
my $res = $sth->execute($monitor->{NewFunction}, $monitor->{NewEnabled}, $monitor->{Id})
|
|
|
|
or Fatal("Can't execute: ".$sth->errstr());
|
|
|
|
} # end if change of function or enablement
|
|
|
|
} # end foreach monitor
|
|
|
|
$sth->finish();
|
|
|
|
|
|
|
|
# PP - Now mark a specific state as active
|
|
|
|
resetStates();
|
|
|
|
Info("Marking $store_state as Enabled");
|
2019-08-25 23:36:23 +08:00
|
|
|
$sql = 'UPDATE `States` SET `IsActive` = 1 WHERE `Name` = ?';
|
2018-06-07 02:05:58 +08:00
|
|
|
$sth = $dbh->prepare_cached($sql)
|
|
|
|
or Fatal("Can't prepare '$sql': ".$dbh->errstr());
|
|
|
|
$res = $sth->execute($store_state)
|
|
|
|
or Fatal("Can't execute: ".$sth->errstr());
|
|
|
|
|
|
|
|
# PP - zero out other states isActive
|
|
|
|
$command = 'restart';
|
|
|
|
} # end if command = state
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2014-08-10 21:47:11 +08:00
|
|
|
# Check if we are running systemd and if we have been called by the system
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $command =~ /^(start|stop|restart)$/ ) {
|
|
|
|
# We have to detaint to keep perl from complaining
|
|
|
|
$command = $1;
|
|
|
|
|
|
|
|
if ( systemdRunning() && !calledBysystem() ) {
|
|
|
|
qx(@BINDIR@/zmsystemctl.pl $command);
|
|
|
|
$command = '';
|
|
|
|
}
|
2014-08-10 21:47:11 +08:00
|
|
|
}
|
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $command =~ /^(?:stop|restart)$/ ) {
|
|
|
|
my $status = runCommand('zmdc.pl check');
|
2018-06-07 02:05:58 +08:00
|
|
|
Debug("zmdc.pl check = $status");
|
2015-04-11 20:39:32 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $status eq 'running' ) {
|
|
|
|
runCommand('zmdc.pl shutdown');
|
|
|
|
zmMemTidy();
|
|
|
|
} else {
|
|
|
|
$retval = 1;
|
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $command =~ /^(?:start|restart)$/ ) {
|
|
|
|
my $status = runCommand('zmdc.pl check');
|
2018-06-07 02:05:58 +08:00
|
|
|
Debug("zmdc.pl check = $status");
|
2017-09-12 10:12:10 +08:00
|
|
|
|
|
|
|
if ( $status eq 'stopped' ) {
|
|
|
|
if ( $Config{ZM_DYN_DB_VERSION}
|
|
|
|
and ( $Config{ZM_DYN_DB_VERSION} ne ZM_VERSION )
|
|
|
|
) {
|
2021-04-29 01:25:01 +08:00
|
|
|
my ( $db_major, $db_minor, $db_micro ) = split(/\./, $Config{ZM_DYN_DB_VERSION});
|
|
|
|
my ( $major, $minor, $micro ) = split(/\./, ZM_VERSION);
|
2021-02-03 22:50:37 +08:00
|
|
|
if ( $db_major != $major or $db_minor != $minor ) {
|
|
|
|
Fatal('Version mismatch, system is version '.ZM_VERSION
|
|
|
|
.', database is '.$Config{ZM_DYN_DB_VERSION}
|
|
|
|
.', please run zmupdate.pl to update.'
|
|
|
|
);
|
|
|
|
exit(-1);
|
|
|
|
} else {
|
|
|
|
Error('Version mismatch, system is version '.ZM_VERSION
|
|
|
|
.', database is '.$Config{ZM_DYN_DB_VERSION}
|
|
|
|
.', please run zmupdate.pl to update.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} # end if version mismatch
|
2011-05-25 17:15:14 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
# Recreate the temporary directory if it's been wiped
|
|
|
|
verifyFolder('@ZM_TMPDIR@');
|
2014-10-06 00:25:41 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
# Recreate the run directory if it's been wiped
|
|
|
|
verifyFolder('@ZM_RUNDIR@');
|
2014-10-06 00:25:41 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
# Recreate the sock directory if it's been wiped
|
|
|
|
verifyFolder('@ZM_SOCKDIR@');
|
2015-04-11 20:39:32 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
zmMemTidy();
|
|
|
|
runCommand('zmdc.pl startup');
|
2015-04-11 20:39:32 +08:00
|
|
|
|
2018-01-16 22:31:58 +08:00
|
|
|
my $Server = undef;
|
|
|
|
my $sql;
|
|
|
|
my @values;
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $Config{ZM_SERVER_ID} ) {
|
2018-01-16 22:31:58 +08:00
|
|
|
require ZoneMinder::Server;
|
2018-06-07 02:05:58 +08:00
|
|
|
Info("Multi-server configuration detected. Starting up services for server $Config{ZM_SERVER_ID}");
|
|
|
|
$Server = new ZoneMinder::Server($Config{ZM_SERVER_ID});
|
2019-08-25 23:36:23 +08:00
|
|
|
$sql = 'SELECT * FROM `Monitors` WHERE `ServerId`=?';
|
2018-01-16 22:31:58 +08:00
|
|
|
@values = ( $Config{ZM_SERVER_ID} );
|
2017-09-12 10:12:10 +08:00
|
|
|
} else {
|
|
|
|
Info('Single server configuration detected. Starting up services.');
|
2019-08-25 23:36:23 +08:00
|
|
|
$sql = 'SELECT * FROM `Monitors`';
|
2017-09-12 10:12:10 +08:00
|
|
|
}
|
2015-04-11 20:39:32 +08:00
|
|
|
|
2018-04-04 05:41:32 +08:00
|
|
|
{
|
2018-06-07 02:05:58 +08:00
|
|
|
my $sth = $dbh->prepare_cached($sql)
|
|
|
|
or Fatal("Can't prepare '$sql': ".$dbh->errstr());
|
|
|
|
my $res = $sth->execute(@values)
|
|
|
|
or Fatal("Can't execute: ".$sth->errstr());
|
|
|
|
while( my $monitor = $sth->fetchrow_hashref() ) {
|
|
|
|
if ( $monitor->{Function} ne 'None' && $monitor->{Type} ne 'WebSite' ) {
|
|
|
|
if ( $monitor->{Type} eq 'Local' ) {
|
|
|
|
runCommand("zmdc.pl start zmc -d $monitor->{Device}");
|
|
|
|
} else {
|
|
|
|
runCommand("zmdc.pl start zmc -m $monitor->{Id}");
|
2017-09-12 10:12:10 +08:00
|
|
|
}
|
2018-06-07 02:05:58 +08:00
|
|
|
if ( $Config{ZM_OPT_CONTROL} ) {
|
2019-04-02 05:26:24 +08:00
|
|
|
if ( $monitor->{Controllable} ) {
|
|
|
|
runCommand("zmdc.pl start zmcontrol.pl --id $monitor->{Id}");
|
|
|
|
if ( $monitor->{TrackMotion} ) {
|
|
|
|
if ( $monitor->{Function} eq 'Modect' || $monitor->{Function} eq 'Mocord' ) {
|
|
|
|
runCommand("zmdc.pl start zmtrack.pl -m $monitor->{Id}");
|
|
|
|
} else {
|
|
|
|
Warning('Monitor is set to track motion, but does not have motion detection enabled.');
|
|
|
|
} # end if Has motion enabled
|
|
|
|
} # end if track motion
|
|
|
|
} # end if controllable
|
|
|
|
} # end if ZM_OPT_CONTROL
|
2018-06-07 02:05:58 +08:00
|
|
|
} # end if function is not none or Website
|
|
|
|
} # end foreach monitor
|
|
|
|
$sth->finish();
|
2018-04-04 05:41:32 +08:00
|
|
|
}
|
2018-06-07 02:05:58 +08:00
|
|
|
|
2018-04-04 05:41:32 +08:00
|
|
|
{
|
2019-08-25 23:36:23 +08:00
|
|
|
my $sql = 'SELECT `Id` FROM `Filters` WHERE `Background`=1';
|
2018-06-07 02:05:58 +08:00
|
|
|
my $sth = $dbh->prepare_cached($sql)
|
|
|
|
or Fatal("Can't prepare '$sql': ".$dbh->errstr());
|
|
|
|
my $res = $sth->execute()
|
|
|
|
or Fatal("Can't execute: ".$sth->errstr());
|
|
|
|
if ( $sth->rows ) {
|
|
|
|
while( my $filter = $sth->fetchrow_hashref() ) {
|
|
|
|
# This is now started unconditionally
|
|
|
|
runCommand("zmdc.pl start zmfilter.pl --filter_id=$$filter{Id} --daemon");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
runCommand('zmdc.pl start zmfilter.pl');
|
2018-04-04 05:41:32 +08:00
|
|
|
}
|
2018-06-07 02:05:58 +08:00
|
|
|
$sth->finish();
|
2018-04-04 05:41:32 +08:00
|
|
|
}
|
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $Config{ZM_RUN_AUDIT} ) {
|
2018-08-11 22:08:30 +08:00
|
|
|
if ( $Server and exists $$Server{zmaudit} and ! $$Server{zmaudit} ) {
|
|
|
|
Debug('Not running zmaudit.pl because it is turned off for this server.');
|
2018-01-16 22:31:58 +08:00
|
|
|
} else {
|
|
|
|
runCommand('zmdc.pl start zmaudit.pl -c');
|
|
|
|
}
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $Config{ZM_OPT_TRIGGERS} ) {
|
2018-08-11 22:08:30 +08:00
|
|
|
if ( $Server and exists $$Server{zmtrigger} and ! $$Server{zmtrigger} ) {
|
|
|
|
Debug('Not running zmtrigger.pl because it is turned off for this server.');
|
2018-01-16 22:31:58 +08:00
|
|
|
} else {
|
|
|
|
runCommand('zmdc.pl start zmtrigger.pl');
|
|
|
|
}
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $Config{ZM_OPT_X10} ) {
|
|
|
|
runCommand('zmdc.pl start zmx10.pl -c start');
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
runCommand('zmdc.pl start zmwatch.pl');
|
|
|
|
if ( $Config{ZM_CHECK_FOR_UPDATES} ) {
|
|
|
|
runCommand('zmdc.pl start zmupdate.pl -c');
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $Config{ZM_TELEMETRY_DATA} ) {
|
|
|
|
runCommand('zmdc.pl start zmtelemetry.pl');
|
|
|
|
}
|
2018-03-29 23:27:31 +08:00
|
|
|
if ($Config{ZM_OPT_USE_EVENTNOTIFICATION} ) {
|
2019-02-27 22:28:15 +08:00
|
|
|
if ( $Server and exists $$Server{'zmeventnotification'} and ! $$Server{'zmeventnotification'} ) {
|
|
|
|
Debug("Not running zmnotification.pl because it is turned off for this server.");
|
|
|
|
} else {
|
2018-03-29 20:47:55 +08:00
|
|
|
runCommand('zmdc.pl start zmeventnotification.pl');
|
2019-02-27 22:28:15 +08:00
|
|
|
}
|
2018-03-29 20:47:55 +08:00
|
|
|
}
|
2018-08-11 22:08:30 +08:00
|
|
|
if ( $Server and exists $$Server{zmstats} and ! $$Server{zmstats} ) {
|
|
|
|
Debug('Not running zmstats.pl because it is turned off for this server.');
|
2018-01-16 22:31:58 +08:00
|
|
|
} else {
|
|
|
|
runCommand('zmdc.pl start zmstats.pl');
|
|
|
|
}
|
2021-03-02 02:34:26 +08:00
|
|
|
if ( $Config{ZM_MIN_RTSP_PORT} ) {
|
|
|
|
runCommand('zmdc.pl start zm_rtsp_server');
|
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
} else {
|
|
|
|
$retval = 1;
|
|
|
|
}
|
2018-06-07 02:05:58 +08:00
|
|
|
} # end if command is start or restart
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $command eq 'status' ) {
|
|
|
|
my $status = runCommand('zmdc.pl check');
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2018-06-07 02:05:58 +08:00
|
|
|
print(STDOUT $status."\n");
|
2017-09-12 10:12:10 +08:00
|
|
|
} elsif ( $command eq 'logrot' ) {
|
|
|
|
runCommand('zmdc.pl logrot');
|
2006-07-04 18:34:21 +08:00
|
|
|
}
|
|
|
|
|
2018-06-07 02:05:58 +08:00
|
|
|
exit($retval);
|
2013-12-17 05:32:02 +08:00
|
|
|
|
2015-08-26 23:20:58 +08:00
|
|
|
# PP - Make sure isActive is on and only one
|
2017-09-12 10:12:10 +08:00
|
|
|
sub isActiveSanityCheck {
|
|
|
|
|
2017-11-22 01:28:41 +08:00
|
|
|
Info('Sanity checking States table...');
|
2017-09-12 10:12:10 +08:00
|
|
|
$dbh = zmDbConnect() if ! $dbh;
|
|
|
|
|
|
|
|
# PP - First, make sure default exists and there is only one
|
2019-08-25 23:36:23 +08:00
|
|
|
my $sql = 'SELECT `Name` FROM `States` WHERE `Name`=?';
|
2018-06-07 02:05:58 +08:00
|
|
|
my $sth = $dbh->prepare_cached($sql)
|
|
|
|
or Fatal("Can't prepare '$sql': ".$dbh->errstr());
|
2019-08-25 23:36:23 +08:00
|
|
|
my $res = $sth->execute('default')
|
2018-06-07 02:05:58 +08:00
|
|
|
or Fatal("Can't execute: ".$sth->errstr());
|
2017-09-12 10:12:10 +08:00
|
|
|
|
2017-11-22 01:28:41 +08:00
|
|
|
if ( $sth->rows != 1 ) {
|
2017-09-12 10:12:10 +08:00
|
|
|
# PP - no row, or too many rows. Either case is an error
|
2018-12-28 01:22:06 +08:00
|
|
|
Info('Fixing States table - either no default state or duplicate default states');
|
2018-11-08 00:01:49 +08:00
|
|
|
if ( $sth->rows ) {
|
2019-08-25 23:36:23 +08:00
|
|
|
$dbh->do('DELETE FROM `States` WHERE `Name`=\'default\'') or Fatal("Can't execute: ".$dbh->errstr());
|
2018-11-08 00:01:49 +08:00
|
|
|
}
|
2019-08-25 23:36:23 +08:00
|
|
|
$dbh->do('INSERT INTO `States` (`Name`,`Definition`,`IsActive`) VALUES (\'default\',\'\',\'1\');')
|
2018-12-28 01:22:06 +08:00
|
|
|
or Fatal("Can't execute: ".$dbh->errstr());
|
2018-11-08 00:01:49 +08:00
|
|
|
}
|
2018-12-28 01:22:06 +08:00
|
|
|
$sth->finish();
|
2017-09-12 10:12:10 +08:00
|
|
|
|
|
|
|
# PP - Now make sure no two states have IsActive=1
|
2019-08-25 23:36:23 +08:00
|
|
|
$sql = 'SELECT `Name` FROM `States` WHERE `IsActive`=1';
|
2018-06-07 02:05:58 +08:00
|
|
|
$sth = $dbh->prepare_cached($sql)
|
|
|
|
or Fatal("Can't prepare '$sql': ".$dbh->errstr());
|
2017-09-12 10:12:10 +08:00
|
|
|
$res = $sth->execute()
|
2018-06-07 02:05:58 +08:00
|
|
|
or Fatal("Can't execute: ".$sth->errstr());
|
2017-09-12 10:12:10 +08:00
|
|
|
|
|
|
|
if ( $sth->rows != 1 ) {
|
2018-06-07 02:05:58 +08:00
|
|
|
Info('Fixing States table so only one run state is active');
|
2017-09-12 10:12:10 +08:00
|
|
|
resetStates();
|
2019-08-25 23:36:23 +08:00
|
|
|
$dbh->do('UPDATE `States` SET `IsActive`=1 WHERE `Name`=\'default\'')
|
2018-12-28 01:22:06 +08:00
|
|
|
or Fatal("Can't execute: ".$dbh->errstr());
|
2017-09-12 10:12:10 +08:00
|
|
|
}
|
2018-12-28 01:22:06 +08:00
|
|
|
$sth->finish();
|
2018-06-07 02:05:58 +08:00
|
|
|
} # end sub isActiveSanityCheck
|
2015-08-26 23:20:58 +08:00
|
|
|
|
|
|
|
# PP - zeroes out isActive for all states
|
2017-09-12 10:12:10 +08:00
|
|
|
sub resetStates {
|
|
|
|
$dbh = zmDbConnect() if ! $dbh;
|
2019-08-25 23:36:23 +08:00
|
|
|
$dbh->do('UPDATE `States` SET `IsActive`=0')
|
2018-12-28 01:22:06 +08:00
|
|
|
or Fatal("Can't execute: ".$dbh->errstr());
|
2015-06-21 21:30:46 +08:00
|
|
|
}
|
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
sub systemdRunning {
|
|
|
|
my $output = qx(ps -o comm="" -p 1);
|
2018-06-07 02:05:58 +08:00
|
|
|
return scalar ( $output =~ /systemd/ );
|
2014-08-10 21:47:11 +08:00
|
|
|
}
|
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
sub calledBysystem {
|
|
|
|
my $ppid = getppid();
|
2014-08-10 21:47:11 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
my $output = qx(ps -o comm="" -p $ppid);
|
2018-06-07 02:05:58 +08:00
|
|
|
#chomp( $output );
|
2014-08-10 21:47:11 +08:00
|
|
|
|
2018-06-07 02:05:58 +08:00
|
|
|
return ($output =~ /^(?:systemd|init)$/);
|
2014-08-10 21:47:11 +08:00
|
|
|
}
|
2014-10-06 00:25:41 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
sub verifyFolder {
|
|
|
|
my $folder = shift;
|
|
|
|
|
|
|
|
# Recreate the temporary directory if it's been wiped
|
|
|
|
if ( !-e $folder ) {
|
2018-06-07 02:05:58 +08:00
|
|
|
Debug("Recreating directory '$folder'");
|
|
|
|
mkdir($folder, 0774)
|
2017-09-12 10:12:10 +08:00
|
|
|
or Fatal( "Can't create missing temporary directory '$folder': $!" );
|
2018-06-07 02:05:58 +08:00
|
|
|
my ( $runName ) = getpwuid($>);
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $runName ne $Config{ZM_WEB_USER} ) {
|
|
|
|
# Not running as web user, so should be root in which case
|
|
|
|
# chown the directory
|
2018-06-07 02:05:58 +08:00
|
|
|
my ( $webName, $webPass, $webUid, $webGid ) = getpwnam($Config{ZM_WEB_USER})
|
|
|
|
or Fatal("Can't get details for web user '$Config{ZM_WEB_USER}': $!");
|
|
|
|
chown($webUid, $webGid, $folder)
|
|
|
|
or Fatal("Can't change ownership of '$folder' to '"
|
|
|
|
.$Config{ZM_WEB_USER}.':'.$Config{ZM_WEB_GROUP}."': $!"
|
2017-09-12 10:12:10 +08:00
|
|
|
);
|
2018-06-07 02:05:58 +08:00
|
|
|
} # end if runName ne ZM_WEB_USER
|
|
|
|
} # end if folder doesn't exist
|
|
|
|
} # end sub verifyFolder
|
2017-09-12 10:12:10 +08:00
|
|
|
|
|
|
|
1;
|
2013-12-17 05:32:02 +08:00
|
|
|
__END__
|
2017-09-12 10:12:10 +08:00
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
zmpkg.pl - ZoneMinder Package Control Script
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2018-12-28 01:24:50 +08:00
|
|
|
zmpkg.pl {start|stop|restart|status|logrot|state|version}
|
2017-09-12 10:12:10 +08:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This script is used to start and stop the ZoneMinder package primarily to
|
|
|
|
allow command line control for automatic restart on reboot (see zm script)
|
|
|
|
|
|
|
|
=cut
|