Sha256: 09562bdc715ae455592bd4d0ede653be4f241e6ec9ae2ef0c8575fe6114109bd
Contents?: true
Size: 671 Bytes
Versions: 20
Compression:
Stored size: 671 Bytes
Contents
#!/usr/bin/env ruby # require 'byebug' app_path = File.dirname(__FILE__) lib_path = File.expand_path(File.join(File.dirname(app_path), 'lib')) load_path << lib_path require 'lorj.rb' # Load global Config oconfig = ForjConfig.new processes = [] # Defines how to manage Maestro and forges # create a maestro box. Identify a forge instance, delete it,... processes << File.join(lib_path, 'forj', 'ForjCore.rb') # Defines how cli will control FORJ features # boot/down/ssh/... processes << File.join(lib_path, 'forj', 'ForjCli.rb') ocloud = ForjCloud.new(oconfig, 'hpcloud', processes) oconfig.set(:box_name, '183') oconfig.set(:box, 'maestro') ocloud.Create(:ssh)
Version data entries
20 entries across 20 versions & 1 rubygems