Sha256: 7f9788d9e1555df50e1f057bb1b493931bcd38995c44ffc594599f1372dd8bbc

Contents?: true

Size: 574 Bytes

Versions: 2

Compression:

Stored size: 574 Bytes

Contents

# Basic pool spec
# Shows global settings for the clouds
pool :application do
  instances 1..3
  ami 'ami-7cfd1a15'  
  
  cloud :example_one do
    keypair 'front'
    has_directory "/var/www"
    
    has_file "/etc/motd", 
      :content => "Welcome to LARubyConf"
    has_file :name => "/var/www/index.html" do
      content "<h1>Welcome to your new poolparty instance</h1>"
      mode 0644
      owner "www-data"
    end
    
    has_git_repo "paparazzi" do
      source "git://github.com/auser/paparazzi.git"
      at "/var/www"
    end
    
    apache
    
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
auser-poolparty-1.2.7 examples/fairchild.rb
auser-poolparty-1.2.8 examples/fairchild.rb