As expected by backend
Marco Fontani [Sat, 20 Nov 2010 19:24:14 +0000 (19:24 +0000)]
lib/Dist/Zilla/App/Command/provision.pm

index 7f4160a..3df6420 100644 (file)
@@ -35,7 +35,7 @@ sub execute {
     
   my %hash = @hashes > 1 ? %{ merge( @hashes ) } : $hashes[0];
 
-  $hash{provision_backend} = delete $hash{type} || 'Rackspace';
+  $hash{provision_backend} = delete $hash{type} || 'Oyster::Provision::Rackspace';
   $hash{pub_ssh} ||= "$ENV{HOME}/.ssh/id_rsa.pub";
   $hash{size}    ||= 1;  # id 1 - ram 256 MiB - disk 10 GiB
   $hash{image}   ||= 69; # id 69 - Ubuntu 10.10 (meerkat)
@@ -43,6 +43,7 @@ sub execute {
   use Oyster::Provision;
   my $server = Oyster::Provision->new(
         name => $name,
+        config => \%hash,
         %hash,
   );
   $server->create;