22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# File 'lib/awstool/settings.rb', line 22
def self.get_flags
OptionParser.new do |opts|
opts.banner = 'Usage: awstool [options] hostname'
opts.on('-h', '--help', 'Prints this help') do
puts opts
exit
end
opts.on('-f', '--facts FACT1,FACT2', Array, 'Seed new instance with puppet facts') do |facts|
facts.each do |fact|
split_fact = fact.split('=')
@options['facts'][split_fact.first] = split_fact[1]
end
end
opts.on('-t', '--tags TAG1,TAG2', Array, 'Set EC2 instance tags') do |tags|
tags.each do |tag|
split_tag = tag.split('=')
@options['tags'][split_tag.first] = split_tag[1]
end
end
opts.on('--debug', 'Prints some extra output helpful for debugging') do
@options['debug'] = true
end
opts.on('-s', '--subnet-id-index INDEX', 'Select a subnet-id from you subnet-ids array.') do |index|
@options['subnet-id-index'] = index.to_i
end
opts.on(
'-o',
'--options-file FILE1,FILE2',
Array,
'List option files that will merge and override settings in .awstool.yaml. Last entry takes precedence.' ) do |of|
of.each do |f|
@option_files << Psych.load_file(File.expand_path(f))
end
end
end.parse!
if ARGV.empty?
puts "hostname string is required."
exit 1
else
@options['hostnames'] = ARGV
end
end
|