From bfa65fc164857faa451138cddb32a9f8f1cf9dce Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Sun, 6 Jan 2013 02:01:06 +0000 Subject: [PATCH] first indexed release to cpan --- Netdisco/Changes | 7 +++++++ DEVELOPING.pod => Netdisco/DEVELOPING.pod | 0 Netdisco/MANIFEST | 1 + Netdisco/Makefile.PL | 5 +++-- Netdisco/bin/netdisco-daemon-fg | 2 +- Netdisco/lib/App/Netdisco.pm | 2 +- 6 files changed, 13 insertions(+), 4 deletions(-) rename DEVELOPING.pod => Netdisco/DEVELOPING.pod (100%) diff --git a/Netdisco/Changes b/Netdisco/Changes index 7f0dfc4c..6a8a5133 100644 --- a/Netdisco/Changes +++ b/Netdisco/Changes @@ -1,3 +1,10 @@ +2.002000 - 2013-01-06 + + [BUG FIXES] + + * Syntax error in netdisco-daemon-fg + * Missing installation of netdisco-web-fg + 2.001000_001 - 2013-01-06 [NEW FEATURES] diff --git a/DEVELOPING.pod b/Netdisco/DEVELOPING.pod similarity index 100% rename from DEVELOPING.pod rename to Netdisco/DEVELOPING.pod diff --git a/Netdisco/MANIFEST b/Netdisco/MANIFEST index 97ffb7f5..ce876f25 100644 --- a/Netdisco/MANIFEST +++ b/Netdisco/MANIFEST @@ -6,6 +6,7 @@ bin/netdisco-deploy bin/netdisco-web bin/netdisco-web-fg Changes +DEVELOPING.pod inc/Module/Install.pm inc/Module/Install/Base.pm inc/Module/Install/Can.pm diff --git a/Netdisco/Makefile.PL b/Netdisco/Makefile.PL index 7bc2d0ec..61417897 100644 --- a/Netdisco/Makefile.PL +++ b/Netdisco/Makefile.PL @@ -32,10 +32,11 @@ requires 'version' => 0.9901; install_share 'share'; -install_script 'bin/netdisco-daemon-fg'; -install_script 'bin/netdisco-daemon'; install_script 'bin/netdisco-db-deploy'; install_script 'bin/netdisco-deploy'; +install_script 'bin/netdisco-daemon-fg'; +install_script 'bin/netdisco-daemon'; +install_script 'bin/netdisco-web-fg'; install_script 'bin/netdisco-web'; resources diff --git a/Netdisco/bin/netdisco-daemon-fg b/Netdisco/bin/netdisco-daemon-fg index 4a891504..fe3e3142 100755 --- a/Netdisco/bin/netdisco-daemon-fg +++ b/Netdisco/bin/netdisco-daemon-fg @@ -24,7 +24,7 @@ use Role::Tiny::With; my $mce = MCE->new( spawn_delay => 0.15, job_delay => 0.15, - tmp_dir => $tmp_dir; + tmp_dir => $tmp_dir, user_func => sub { $_[0]->worker_body }, on_post_exit => \&restart_worker, user_tasks => build_tasks_list(), diff --git a/Netdisco/lib/App/Netdisco.pm b/Netdisco/lib/App/Netdisco.pm index a2f9599b..e70f7ee8 100644 --- a/Netdisco/lib/App/Netdisco.pm +++ b/Netdisco/lib/App/Netdisco.pm @@ -7,7 +7,7 @@ use 5.010_000; use File::ShareDir 'dist_dir'; use Path::Class; -our $VERSION = '2.001000_001'; +our $VERSION = '2.002000'; BEGIN { if (not length ($ENV{DANCER_APPDIR} || '')