corrected abstract
[p5sagit/Oyster.git] / lib / Dist / Zilla / App / Command / provision.pm
index e394b67..9bc0ff9 100644 (file)
@@ -4,7 +4,7 @@ package Dist::Zilla::App::Command::provision;
 BEGIN {
   $Dist::Zilla::App::Command::provision::VERSION = '0.1';
 }
-# ABSTRACT: release your dist to the CPAN
+# ABSTRACT: provision a new Oyster VM
 use Dist::Zilla::App -command;
 use Moose;
 use Config::Any;
@@ -45,10 +45,11 @@ sub execute {
   $hash{size}    ||= 1;  # id 1 - ram 256 MiB - disk 10 GiB
   $hash{image}   ||= 69; # id 69 - Ubuntu 10.10 (meerkat)
 
-  warn Dumper(\%hash); use Data::Dumper;
+  use Data::Dumper; warn "Config hash: ", Dumper(\%hash);
 
   my $server = Oyster::Provision->new(
         name => $name,
+        config => \%hash,
         %hash,
   );
   $server->create;