Skip to content

Commit

Permalink
As expected by backend
Browse files Browse the repository at this point in the history
  • Loading branch information
mfontani committed Nov 20, 2010
1 parent 6c983a4 commit cb52ec3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Dist/Zilla/App/Command/provision.pm
Expand Up @@ -35,14 +35,15 @@ 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)

use Oyster::Provision;
my $server = Oyster::Provision->new(
name => $name,
config => \%hash,
%hash,
);
$server->create;
Expand Down

0 comments on commit cb52ec3

Please sign in to comment.