Merge branch 'storageareas' of github.com:ZoneMinder/ZoneMinder into storageareas
This commit is contained in:
commit
1819f8ecad
|
@ -1,3 +1,9 @@
|
|||
zoneminder (1.29.111-trusty-2016010401) trusty; urgency=medium
|
||||
|
||||
* include fix to rotate image dimensions when applying a rotation
|
||||
|
||||
-- Isaac Connor <iconnor@testing.internal.point-one.com> Mon, 04 Jan 2016 13:24:42 -0500
|
||||
|
||||
zoneminder (1.29.111-trusty-2016010101) trusty; urgency=medium
|
||||
|
||||
* fix logging with multi-server
|
||||
|
|
|
@ -114,6 +114,7 @@ if ( ($report + $interactive + $continuous) > 1 )
|
|||
|
||||
my $dbh = zmDbConnect();
|
||||
|
||||
require ZoneMinder::Monitor;
|
||||
require ZoneMinder::Storage;
|
||||
require ZoneMinder::Event;
|
||||
|
||||
|
@ -364,7 +365,9 @@ MAIN: while( $loop ) {
|
|||
}
|
||||
else
|
||||
{
|
||||
aud_print( "Database monitor '$db_monitor' does not exist in filesystem" );
|
||||
my $Monitor = new ZoneMinder::Monitor( $db_monitor );
|
||||
my $Storage = $Monitor->Storage();
|
||||
aud_print( "Database monitor '$db_monitor' does not exist in filesystem, should have been at ".$Storage->Path()."\n" );
|
||||
#if ( confirm() )
|
||||
#{
|
||||
# We don't actually do this in case it's new
|
||||
|
|
Loading…
Reference in New Issue