6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# File 'lib/release_manager/cli/deploy_mod_cli.rb', line 6
def self.run
options = {}
OptionParser.new do |opts|
opts.program_name = 'deploy-mod'
opts.version = ReleaseManager::VERSION
opts.on_head(<<-EOF
Summary: Gets the version of your module found in the metadata
and populates the r10k-control Puppetfile with the updated
tag version. Revmoes any branch or ref reference and replaces
with tag. Currently it is up to you to commit and push the Puppetfile change.
Options:
EOF
)
opts.on('-p', "--puppetfile [PUPPETFILE]", 'Path to R10k Puppetfile, defaults to ~/repos/r10k-control/Puppetfile') do |p|
options[:puppetfile] = p
end
opts.on('-m', '--modulepath [MODULEPATH]', "Path to to module, defaults to: #{Dir.getwd}") do |p|
options[:modulepath] = p
end
opts.on('-c', '--commit', 'Optionally, Commit the Puppetfile change') do |p|
options[:commit] = p
end
opts.on('-d', 'Perform a dry run without making changes') do |p|
options[:dry_run] = p
end
opts.on('-a', '--auto', 'Run this script without interaction') do |c|
options[:auto] = c
end
opts.on('-r', '--remote-deploy', "Perform a remote deploy (For CI systems)") do |c|
options[:remote] = c
options[:auto] = true
end
end.parse!
m = ModuleDeployer.new(options)
m.run
end
|