16
17
18
19
20
21
22
23
|
# File 'lib/maws/commands/configure.rb', line 16
def add_specific_options(parser)
parser.opt :dump, "Dump config files before uploading them", :type => :flag, :default => false
parser.opt :command, "Command to run remotely (either name or a string)", :type => :string, :default => ""
parser.opt :login_name, "The SSH login name", :short => '-l', :type => :string, :default => "root"
parser.opt :hostname, "The SSH hostname", :short => '-h', :type => :string, :default => nil
parser.opt :identity_file, "The SSH identity file", :short => '-i', :type => :string
parser.opt :copy_to_local, "Copy template output to local folders", :short => '-L', :type => :flag, :default => false
end
|