class Percheron::Commands::Create

Public Instance Methods

execute() click to toggle source
Calls superclass method Percheron::Commands::Abstract#execute
# File lib/percheron/commands/create.rb, line 11
def execute
  super
  opts = { unit_names: unit_names, build: build?, start: start?, deep: deep?, force: force? }
  runit { stack.create!(opts) }
end