Sha256: 6b7780c0ef0450d33741f1f55192e293733edce5af0bfbd325e0aeb6be0b9cc2
Contents?: true
Size: 681 Bytes
Versions: 16
Compression:
Stored size: 681 Bytes
Contents
module Mccloud module EnvironmentCommand def boot(selection=nil,options=nil) @config.providers.each do |name,provider| provider.boot(selection,command,options) end end def bootstrap(selection=nil,options=nil) @config.providers.each do |name,provider| provider.bootstrap(selection,options) end end def halt(selection,options) @config.providers.each do |name,provider| provider.halt(selection,options) end end def rsync(selection,path,options) @config.providers.each do |name,provider| provider.rsync(selection,path,options) end end end end
Version data entries
16 entries across 16 versions & 1 rubygems