From 01d28490a6e3bcd13f13a6457dd25cd9eca2da13 Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Tue, 27 May 2014 07:07:56 +0100 Subject: [PATCH 1/2] fix another bug in call to Daemon::Contol redirect_filehandles --- Netdisco/Changes | 6 ++++++ Netdisco/bin/netdisco-daemon | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Netdisco/Changes b/Netdisco/Changes index dc235650..c1c4c35d 100644 --- a/Netdisco/Changes +++ b/Netdisco/Changes @@ -1,3 +1,9 @@ +2.027006 - 2014-05-27 + + [BUG FIXES] + + * fix another bug in call to Daemon::Contol redirect_filehandles + 2.027004 - 2014-05-15 [BUG FIXES] diff --git a/Netdisco/bin/netdisco-daemon b/Netdisco/bin/netdisco-daemon index 68cecfdc..ee7999f5 100755 --- a/Netdisco/bin/netdisco-daemon +++ b/Netdisco/bin/netdisco-daemon @@ -93,7 +93,7 @@ sub restarter { warn "-- $_->{path} updated.\n" for @restart; signal_child('TERM', $child); - $child = fork_and_start(@program_args); + $child = fork_and_start($daemon, @program_args); exit(1) unless $child; } } From 59e4af67cdab9e03a0c39f49b7c43873d4f50e7a Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Tue, 27 May 2014 07:09:07 +0100 Subject: [PATCH 2/2] release 2.027006 --- 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 79e6455c..6e5f5471 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.027004 +version: 2.027006 diff --git a/Netdisco/lib/App/Netdisco.pm b/Netdisco/lib/App/Netdisco.pm index b6d28d9b..ea728f27 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.027004'; +our $VERSION = '2.027006'; use App::Netdisco::Environment; use Dancer ':script';