Sha256: 4835571d9e51efbb9dc743588e5bcd5b86b09416e8bb402397be02ae25f3a9df
Contents?: true
Size: 572 Bytes
Versions: 20
Compression:
Stored size: 572 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 opt :generate_graph, "Generate the dependency tree graph", :type => :string, :default => nil run do |command| @loaded_clouds.each do |cld| cld.configure! end end end
Version data entries
20 entries across 20 versions & 1 rubygems