Sha256: dd6c1536e3037fd0a1c80ea44477e0754659b2e3445c1c6d7f8922be9e172c45

Contents?: true

Size: 543 Bytes

Versions: 2

Compression:

Stored size: 543 Bytes

Contents

#!/usr/bin/env ruby
$:.unshift(File.dirname(__FILE__) + "/../lib")
require "poolparty"

require 'git-style-binary/command'

GitStyleBinary.command do
  banner <<-EOS
Usage: #{$0} #{all_options_string}

  Configure a cloud instance
EOS

  short_desc "Configure a cloud instance"
  
  opt :inst_num, "The number of the instance to run bootstrap on", :type => :int

  run do |command|
    
    @loaded_clouds.each do |cld|
      
      cld.compile
      cld.output_resources_graph('png', "graph", {"fontsize" => 30})
      
    end
    
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
auser-poolparty-1.3.0 bin/cloud-compile
auser-poolparty-1.3.1 bin/cloud-compile