2005-12-16 18:05:29 +08:00
|
|
|
#!/usr/bin/perl -wT
|
|
|
|
#
|
|
|
|
# ==========================================================================
|
|
|
|
#
|
|
|
|
# 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)};
|
2015-06-21 21:30:46 +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;
|
|
|
|
|
2015-01-07 22:05:16 +08:00
|
|
|
my $dbh;
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( !$command || $command !~ /^(?:start|stop|restart|status|logrot|version)$/ ) {
|
|
|
|
if ( $command ) {
|
|
|
|
$dbh = zmDbConnect();
|
|
|
|
# Check to see if it's a valid run state
|
|
|
|
my $sql = 'SELECT * FROM States WHERE Name=?';
|
|
|
|
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 }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$store_state=$command; # PP - Remember the name that was passed to search in DB
|
|
|
|
$command = 'state';
|
|
|
|
} else {
|
|
|
|
$command = undef;
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
}
|
|
|
|
if ( !$command ) {
|
|
|
|
pod2usage(-exitstatus => -1);
|
|
|
|
}
|
2005-12-16 18:05:29 +08:00
|
|
|
}
|
2015-01-07 22:05:16 +08:00
|
|
|
$dbh = zmDbConnect() if ! $dbh;
|
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
|
2015-04-11 20:39:32 +08:00
|
|
|
chdir( $Config{ZM_PATH_WEB} )
|
2017-09-12 10:12:10 +08:00
|
|
|
or Fatal( "Can't chdir to '".$Config{ZM_PATH_WEB}."': $!" );
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
my $dbg_id = '';
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
Info( "Command: $command\n" );
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
my $retval = 0;
|
2005-12-16 18:05:29 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $command eq 'state' ) {
|
2015-04-11 20:39:32 +08:00
|
|
|
Info( "Updating DB: $state->{Name}\n" );
|
2015-08-27 23:13:44 +08:00
|
|
|
my $sql = $Config{ZM_SERVER_ID} ? 'SELECT * FROM Monitors WHERE ServerId=? ORDER BY Id ASC' : 'SELECT * FROM Monitors ORDER BY Id ASC';
|
2015-04-11 20:39:32 +08:00
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
2017-09-12 10:12:10 +08:00
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
2015-07-16 04:18:05 +08:00
|
|
|
my $res = $sth->execute( $Config{ZM_SERVER_ID} ? $Config{ZM_SERVER_ID}: () )
|
2017-09-12 10:12:10 +08:00
|
|
|
or Fatal( "Can't execute: ".$sth->errstr() );
|
|
|
|
while( my $monitor = $sth->fetchrow_hashref() ) {
|
|
|
|
foreach my $definition ( @{$state->{Definitions}} ) {
|
|
|
|
if ( $monitor->{Id} =~ /^$definition->{Id}$/ ) {
|
|
|
|
$monitor->{NewFunction} = $definition->{Function};
|
|
|
|
$monitor->{NewEnabled} = $definition->{Enabled};
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
}
|
|
|
|
#next if ( !$monitor->{NewFunction} );
|
|
|
|
$monitor->{NewFunction} = 'None'
|
|
|
|
if ( !$monitor->{NewFunction} );
|
|
|
|
$monitor->{NewEnabled} = 0
|
|
|
|
if ( !$monitor->{NewEnabled} );
|
|
|
|
if ( $monitor->{Function} ne $monitor->{NewFunction}
|
|
|
|
|| $monitor->{Enabled} ne $monitor->{NewEnabled}
|
|
|
|
) {
|
|
|
|
my $sql = 'UPDATE Monitors SET Function=?, Enabled=? WHERE Id=?';
|
|
|
|
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() );
|
|
|
|
}
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
|
|
|
$sth->finish();
|
2017-09-12 10:12:10 +08:00
|
|
|
|
|
|
|
# PP - Now mark a specific state as active
|
2015-08-26 23:20:58 +08:00
|
|
|
resetStates();
|
|
|
|
Info ("Marking $store_state as Enabled");
|
2017-09-12 10:12:10 +08:00
|
|
|
$sql = "UPDATE States SET IsActive = '1' WHERE Name = ?";
|
2015-06-21 21:30:46 +08:00
|
|
|
$sth = $dbh->prepare_cached( $sql )
|
2017-09-12 10:12:10 +08:00
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
2015-06-21 21:30:46 +08:00
|
|
|
$res = $sth->execute( $store_state )
|
2017-09-12 10:12:10 +08:00
|
|
|
or Fatal( "Can't execute: ".$sth->errstr() );
|
2015-04-11 20:39:32 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
# PP - zero out other states isActive
|
|
|
|
$command = 'restart';
|
|
|
|
}
|
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');
|
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
|
|
|
}
|
|
|
|
|
2013-12-07 05:46:21 +08:00
|
|
|
#runCommand( "zmupdate.pl -f" );
|
2011-04-19 17:27:55 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $command =~ /^(?:start|restart)$/ ) {
|
|
|
|
my $status = runCommand('zmdc.pl check');
|
|
|
|
|
|
|
|
if ( $status eq 'stopped' ) {
|
|
|
|
if ( $Config{ZM_DYN_DB_VERSION}
|
|
|
|
and ( $Config{ZM_DYN_DB_VERSION} ne ZM_VERSION )
|
|
|
|
) {
|
|
|
|
Fatal( 'Version mismatch, system is version '.ZM_VERSION
|
|
|
|
.', database is '.$Config{ZM_DYN_DB_VERSION}
|
|
|
|
.', please run zmupdate.pl to update.'
|
|
|
|
);
|
|
|
|
exit( -1 );
|
|
|
|
}
|
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;
|
2017-09-12 10:12:10 +08:00
|
|
|
Info("Multi-server configuration detected. Starting up services for server $Config{ZM_SERVER_ID}\n");
|
2018-01-16 22:31:58 +08:00
|
|
|
$Server = new ZoneMinder::Server( $Config{ZM_SERVER_ID} );
|
|
|
|
$sql = 'SELECT * FROM Monitors WHERE ServerId=?';
|
|
|
|
@values = ( $Config{ZM_SERVER_ID} );
|
2017-09-12 10:12:10 +08:00
|
|
|
} else {
|
|
|
|
Info('Single server configuration detected. Starting up services.');
|
2018-01-16 22:31:58 +08:00
|
|
|
$sql = 'SELECT * FROM Monitors';
|
2017-09-12 10:12:10 +08:00
|
|
|
}
|
|
|
|
|
2018-04-04 05:41:32 +08:00
|
|
|
{
|
2017-09-12 10:12:10 +08:00
|
|
|
my $sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
2018-01-16 22:31:58 +08:00
|
|
|
my $res = $sth->execute( @values )
|
2017-09-12 10:12:10 +08:00
|
|
|
or Fatal( "Can't execute: ".$sth->errstr() );
|
|
|
|
while( my $monitor = $sth->fetchrow_hashref() ) {
|
2018-04-27 05:18:36 +08:00
|
|
|
if ( $monitor->{Function} ne 'None' && $monitor->{Type} ne 'WebSite' ) {
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $monitor->{Type} eq 'Local' ) {
|
|
|
|
runCommand( "zmdc.pl start zmc -d $monitor->{Device}" );
|
2016-05-24 09:06:29 +08:00
|
|
|
} else {
|
2017-09-12 10:12:10 +08:00
|
|
|
runCommand( "zmdc.pl start zmc -m $monitor->{Id}" );
|
2016-05-24 09:06:29 +08:00
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $monitor->{Function} ne 'Monitor' ) {
|
|
|
|
runCommand( "zmdc.pl start zma -m $monitor->{Id}" );
|
|
|
|
}
|
|
|
|
if ( $Config{ZM_OPT_CONTROL} ) {
|
|
|
|
if ( $monitor->{Function} eq 'Modect' || $monitor->{Function} eq 'Mocord' ) {
|
|
|
|
if ( $monitor->{Controllable} && $monitor->{TrackMotion} ) {
|
|
|
|
runCommand( "zmdc.pl start zmtrack.pl -m $monitor->{Id}" );
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
}
|
2015-04-11 20:39:32 +08:00
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$sth->finish();
|
2018-04-04 05:41:32 +08:00
|
|
|
}
|
|
|
|
{
|
|
|
|
my $sql = 'SELECT Id FROM Filters WHERE Background=1';
|
|
|
|
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() ) {
|
2017-09-12 10:12:10 +08:00
|
|
|
# This is now started unconditionally
|
2018-04-04 05:41:32 +08:00
|
|
|
runCommand("zmdc.pl start zmfilter.pl --filter_id=$$filter{Id}");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
runCommand('zmdc.pl start zmfilter.pl');
|
|
|
|
}
|
|
|
|
$sth->finish();
|
|
|
|
}
|
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $Config{ZM_RUN_AUDIT} ) {
|
2018-01-17 10:45:01 +08:00
|
|
|
if ( $Server and exists $$Server{'zmaudit'} and ! $$Server{'zmaudit'} ) {
|
2018-01-16 22:31:58 +08:00
|
|
|
Debug("Not running zmaudit.pl because it is turned off for this server.");
|
|
|
|
} 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-01-17 10:45:01 +08:00
|
|
|
if ( $Server and exists $$Server{'zmtrigger'} and ! $$Server{'zmtrigger'} ) {
|
2018-01-16 22:31:58 +08:00
|
|
|
Debug("Not running zmtrigger.pl because it is turned off for this server.");
|
|
|
|
} 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');
|
|
|
|
}
|
|
|
|
runCommand('zmdc.pl start zmwatch.pl');
|
|
|
|
if ( $Config{ZM_CHECK_FOR_UPDATES} ) {
|
|
|
|
runCommand('zmdc.pl start zmupdate.pl -c');
|
|
|
|
}
|
|
|
|
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} ) {
|
2018-03-29 20:47:55 +08:00
|
|
|
runCommand('zmdc.pl start zmeventnotification.pl');
|
|
|
|
}
|
2018-01-17 10:45:01 +08:00
|
|
|
if ( $Server and exists $$Server{'zmstats'} and ! $$Server{'zmstats'} ) {
|
2018-01-16 22:31:58 +08:00
|
|
|
Debug("Not running zmstats.pl because it is turned off for this server.");
|
|
|
|
} else {
|
|
|
|
runCommand('zmdc.pl start zmstats.pl');
|
|
|
|
}
|
2017-09-12 10:12:10 +08:00
|
|
|
} else {
|
|
|
|
$retval = 1;
|
|
|
|
}
|
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
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
print( STDOUT $status."\n" );
|
|
|
|
} elsif ( $command eq 'logrot' ) {
|
|
|
|
runCommand('zmdc.pl logrot');
|
2006-07-04 18:34:21 +08:00
|
|
|
}
|
|
|
|
|
2005-12-16 18:05:29 +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 {
|
|
|
|
|
|
|
|
Info ('Sanity checking States table...');
|
|
|
|
$dbh = zmDbConnect() if ! $dbh;
|
|
|
|
|
|
|
|
# PP - First, make sure default exists and there is only one
|
|
|
|
my $sql = "SELECT Name FROM States WHERE Name='default'";
|
|
|
|
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 != 1) {
|
|
|
|
# PP - no row, or too many rows. Either case is an error
|
|
|
|
Info( 'Fixing States table - either no default state or duplicate default states' );
|
|
|
|
$sql = "DELETE FROM States WHERE Name='default'";
|
|
|
|
$sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
$res = $sth->execute()
|
|
|
|
or Fatal( "Can't execute: ".$sth->errstr() );
|
|
|
|
$sql = "INSERT INTO States (Name,Definition,IsActive) VALUES ('default','','1');";
|
|
|
|
$sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
$res = $sth->execute()
|
|
|
|
or Fatal( "Can't execute: ".$sth->errstr() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# PP - Now make sure no two states have IsActive=1
|
|
|
|
$sql = "SELECT Name FROM States WHERE IsActive = '1'";
|
|
|
|
$sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
$res = $sth->execute()
|
|
|
|
or Fatal( "Can't execute: ".$sth->errstr() );
|
|
|
|
|
|
|
|
if ( $sth->rows != 1 ) {
|
|
|
|
Info( 'Fixing States table so only one run state is active' );
|
|
|
|
resetStates();
|
|
|
|
$sql = "UPDATE States SET IsActive='1' WHERE Name='default'";
|
|
|
|
$sth = $dbh->prepare_cached( $sql )
|
|
|
|
or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
|
|
|
$res = $sth->execute()
|
|
|
|
or Fatal( "Can't execute: ".$sth->errstr() );
|
|
|
|
}
|
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;
|
|
|
|
my $sql = "UPDATE States SET IsActive='0'";
|
|
|
|
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() );
|
2015-06-21 21:30:46 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
sub systemdRunning {
|
|
|
|
my $result = 0;
|
2014-08-10 21:47:11 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
my $output = qx(ps -o comm="" -p 1);
|
|
|
|
chomp( $output );
|
2014-08-10 21:47:11 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ( $output =~ /systemd/ ) {
|
|
|
|
$result = 1;
|
|
|
|
}
|
2014-08-10 21:47:11 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
return $result;
|
2014-08-10 21:47:11 +08:00
|
|
|
}
|
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
sub calledBysystem {
|
|
|
|
my $result = 0;
|
|
|
|
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);
|
|
|
|
chomp( $output );
|
2014-08-10 21:47:11 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
if ($output =~ /^(?:systemd|init)$/) {
|
|
|
|
$result = 1;
|
|
|
|
}
|
2014-08-10 21:47:11 +08:00
|
|
|
|
2017-09-12 10:12:10 +08:00
|
|
|
return $result;
|
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 ) {
|
|
|
|
Debug( "Recreating directory '$folder'" );
|
|
|
|
mkdir( $folder, 0774 )
|
|
|
|
or Fatal( "Can't create missing temporary directory '$folder': $!" );
|
|
|
|
my ( $runName ) = getpwuid( $> );
|
|
|
|
if ( $runName ne $Config{ZM_WEB_USER} ) {
|
|
|
|
# Not running as web user, so should be root in which case
|
|
|
|
# chown the directory
|
|
|
|
my ( $webName, $webPass, $webUid, $webGid ) = getpwnam( $Config{ZM_WEB_USER} )
|
|
|
|
or Fatal( "Can't get user details for web user '"
|
|
|
|
.$Config{ZM_WEB_USER}."': $!"
|
|
|
|
);
|
|
|
|
chown( $webUid, $webGid, "$folder" )
|
|
|
|
or Fatal( "Can't change ownership of directory '$folder' to '"
|
|
|
|
.$Config{ZM_WEB_USER}.":".$Config{ZM_WEB_GROUP}."': $!"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2014-10-06 00:25:41 +08:00
|
|
|
}
|
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
|
|
|
|
|
|
|
|
zmpkg.pl {start|stop|restart|status|logrot|'state'|version}
|
|
|
|
|
|
|
|
=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
|