From d765b0a1244988d6cd0c9147efef8ca13b285616 Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Thu, 15 May 2014 16:53:52 +0100 Subject: [PATCH 1/2] fix bug in call to Daemon::Contol redirect_filehandles (M. Planck) --- Netdisco/Changes | 8 +++++++- Netdisco/bin/netdisco-daemon | 2 +- Netdisco/bin/netdisco-web | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Netdisco/Changes b/Netdisco/Changes index d2315e6f..dc235650 100644 --- a/Netdisco/Changes +++ b/Netdisco/Changes @@ -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] diff --git a/Netdisco/bin/netdisco-daemon b/Netdisco/bin/netdisco-daemon index cb1eac0e..68cecfdc 100755 --- a/Netdisco/bin/netdisco-daemon +++ b/Netdisco/bin/netdisco-daemon @@ -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 { diff --git a/Netdisco/bin/netdisco-web b/Netdisco/bin/netdisco-web index ddbad5f7..59d23210 100755 --- a/Netdisco/bin/netdisco-web +++ b/Netdisco/bin/netdisco-web @@ -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 { From ee398fcae8589a9ae53aec1704a5b82e99d4c3c9 Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Thu, 15 May 2014 16:54:40 +0100 Subject: [PATCH 2/2] release 2.027004 --- Netdisco/META.yml | 2 +- Netdisco/lib/App/Netdisco.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Netdisco/META.yml b/Netdisco/META.yml index 59dd5595..79e6455c 100644 --- a/Netdisco/META.yml +++ b/Netdisco/META.yml @@ -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 diff --git a/Netdisco/lib/App/Netdisco.pm b/Netdisco/lib/App/Netdisco.pm index cadd6505..b6d28d9b 100644 --- a/Netdisco/lib/App/Netdisco.pm +++ b/Netdisco/lib/App/Netdisco.pm @@ -4,7 +4,7 @@ use strict; use warnings; use 5.010_000; -our $VERSION = '2.027003'; +our $VERSION = '2.027004'; use App::Netdisco::Environment; use Dancer ':script';