Merge branch 'master' into og-pluggable-daemon

Conflicts:
	Netdisco/lib/App/Netdisco.pm
This commit is contained in:
Oliver Gorwits
2014-05-17 22:20:40 +01:00
5 changed files with 11 additions and 5 deletions

View File

@@ -1,4 +1,10 @@
2.027003 - 2014-05-04
2.027004 - 2014-05-15
[BUG FIXES]
* fix bug in call to Daemon::Contol redirect_filehandles (M. Planck)
2.027003 - 2014-05-14
[BUG FIXES]

View File

@@ -78,4 +78,4 @@ resources:
homepage: http://netdisco.org/
license: http://opensource.org/licenses/bsd-license.php
repository: git://git.code.sf.net/p/netdisco/netdisco-ng
version: 2.027003
version: 2.027004

View File

@@ -104,7 +104,7 @@ sub fork_and_start {
die "Can't fork: $!" unless defined $pid;
if ($pid == 0) { # child
$daemon->redirect_filehandles();
$daemon->redirect_filehandles;
exec( $netdisco->stringify, @daemon_args );
}
else {

View File

@@ -107,7 +107,7 @@ sub fork_and_start {
die "Can't fork: $!" unless defined $pid;
if ($pid == 0) { # child
$daemon->redirect_filehandles();
$daemon->redirect_filehandles;
exec( 'starman', @starman_args );
}
else {

View File

@@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.010_000;
our $VERSION = '2.027003';
our $VERSION = '2.027004';
use App::Netdisco::Configuration;
=head1 NAME