Update CLI options

This commit is contained in:
Brian Cain 2014-10-28 22:57:48 -07:00
parent 99b03e2994
commit 51193ab4a6
4 changed files with 55 additions and 14 deletions

View file

@ -1 +1,16 @@
require 'vmfloaty/cli'
class Vmfloaty
def initialize(env)
@vmpooler_url = env['VMPOOLER_URL']
unless @vmpooler_url
@vmpooler_url = 'http://vcloud.delivery.puppetlabs.net/vm'
end
end
def start
CLI.start(ARGV)
end
end