lib/percheron/commands/shell.rb in percheron-0.7.6 vs lib/percheron/commands/shell.rb in percheron-0.7.7

- old
+ new

@@ -1,15 +1,15 @@ module Percheron module Commands class Shell < Abstract parameter('STACK_NAME', 'stack name', required: true) - parameter('CONTAINER_NAME', 'container name', required: true) + parameter('UNIT_NAME', 'unit name', required: true) option('--command', 'COMMAND', 'command', default: Percheron::Actions::Shell::DEFAULT_COMMAND) def execute super - stack.shell!(container_name, command: command) + stack.shell!(unit_name, command: command) rescue Errors::DockerClientInvalid => e signal_usage_error(e.message) end end end