Sha256: 5d31f2fc8ccf25d1c00443786fca8ac376a0eab749a349389fbc52d0a2749b09
Contents?: true
Size: 800 Bytes
Versions: 1
Compression:
Stored size: 800 Bytes
Contents
module Vagabond module Actions module Up class << self def included(klass) klass.class_eval do class << self def _up_options [[:auto_provision, :type => :boolean, :default => true]] end end end end end def _up name_required! if(lxc.exists?) if(lxc.running?) ui.error "Node already exists and is running: #{name}" else ui.info "#{ui.color('Vagabond:', :bold)} Starting node: #{ui.color(name, :green)}" lxc.start ui.info ui.color(' -> STARTED', :green) end else _create end do_provision if options[:auto_provision] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagabond-0.2.0 | lib/vagabond/actions/up.rb |