lib/rundock/cli.rb in rundock-0.4.16 vs lib/rundock/cli.rb in rundock-0.5.0

- old
+ new

@@ -3,11 +3,11 @@ module Rundock class CLI < Thor DEFAULT_SCENARIO_FILE_PATH = './scenario.yml' DEFAULT_SSH_OPTIONS_DEFAULT_FILE_PATH = './default_ssh.yml' - DEFAULT_HOSTGROUP_FILE_PATH = './hostgroup.yml' + DEFAULT_HOSTGROUP_FILE_PATH = './targetgroup.yml' class_option :log_level, type: :string, aliases: ['-l'], default: 'info' class_option :color, type: :boolean, default: true class_option :header, type: :boolean, default: true class_option :short_header, type: :boolean, default: false @@ -44,10 +44,10 @@ desc 'ssh [options]', 'Run rundock ssh with various options' option :command, type: :string, aliases: ['-c'] option :default_ssh_opts, type: :string, aliases: ['-d'], default: DEFAULT_SSH_OPTIONS_DEFAULT_FILE_PATH option :hooks, type: :string, aliases: ['-k'] option :host, type: :string, aliases: ['-h'], banner: 'You can specify comma separated hosts.[ex: host1,host2,..]' - option :hostgroup, type: :string, aliases: ['-g'] + option :targetgroup, type: :string, aliases: ['-g'] option :user, type: :string, aliases: ['-u'] option :key, type: :string, aliases: ['-i'] option :port, type: :numeric, aliases: ['-p'] option :ssh_config, type: :string, aliases: ['-F'] option :ask_password, type: :boolean, default: false