lib/percheron/commands/create.rb in percheron-0.6.4 vs lib/percheron/commands/create.rb in percheron-0.7.0
- old
+ new
@@ -1,13 +1,13 @@
module Percheron
module Commands
class Create < Abstract
- default_parameters!
+ default_create_parameters!
def execute
- opts = { container_names: container_names }
- stack.create!(opts)
+ super
+ stack.create!(container_names: container_names, start: start?)
end
end
end
end