bin/forj in forj-0.0.18 vs bin/forj in forj-0.0.19
- old
+ new
@@ -61,10 +61,11 @@
end
desc 'boot', 'boot a Maestro box and instruct it to provision the blueprint'
method_option :build_conf_dir, :aliases => '-c', :desc => 'build config dir to use'
method_option :branch, :aliases => '-b', :desc => 'branch to use'
+ method_option :test_box, :aliases => '-t', :desc => 'test box'
def boot(blueprint, on, cloud_provider, as, name, test=false)
build_conf_dir = options[:build_conf_dir]
branch = options[:branch]
unless branch
branch = 'master'
@@ -78,9 +79,14 @@
end
desc 'down', 'delete the Maestro box and all systems installed by the blueprint'
def down(name)
Down.down(name)
+ end
+
+ desc 'ssh', ''
+ def ssh
+ puts 'ssh'
end
desc 'setup', 'set the credentials for forj cli'
def setup
Setup.setup
\ No newline at end of file