first indexed release to cpan

This commit is contained in:
Oliver Gorwits
2013-01-06 02:01:06 +00:00
parent b5f1ed7dbf
commit bfa65fc164
6 changed files with 13 additions and 4 deletions

View File

@@ -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]

View File

@@ -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

View File

@@ -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

View File

@@ -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(),

View File

@@ -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} || '')