1
2
3
4
5
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
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
72
73
74
75
76
|
require 'puppet'
require 'puppet/application'
require 'puppet/ssl/certificate_authority'
Puppet::Application.new(:puppetca) do
should_parse_config
attr_accessor :mode, :all, :ca, :digest
def find_mode(opt)
modes = Puppet::SSL::CertificateAuthority::Interface::INTERFACE_METHODS
tmp = opt.sub("--", '').to_sym
@mode = modes.include?(tmp) ? tmp : nil
end
option("--clean", "-c") do
@mode = :destroy
end
option("--all", "-a") do
@all = true
end
option("--digest DIGEST") do |arg|
@digest = arg
end
option("--debug", "-d") do |arg|
Puppet::Util::Log.level = :debug
end
Puppet::SSL::CertificateAuthority::Interface::INTERFACE_METHODS.reject {|m| m == :destroy }.each do |method|
option("--#{method}", "-%s" % method.to_s[0,1] ) do
find_mode("--#{method}")
end
end
option("--verbose", "-v") do
Puppet::Util::Log.level = :info
end
command(:main) do
if @all
hosts = :all
else
hosts = ARGV.collect { |h| puts h; h.downcase }
end
begin
@ca.apply(:revoke, :to => hosts) if @mode == :destroy
@ca.apply(@mode, :to => hosts, :digest => @digest)
rescue => detail
puts detail.backtrace if Puppet[:trace]
puts detail.to_s
exit(24)
end
end
setup do
if Puppet.settings.print_configs?
exit(Puppet.settings.print_configs ? 0 : 1)
end
Puppet::Util::Log.newdestination :console
Puppet::SSL::Host.ca_location = :only
begin
@ca = Puppet::SSL::CertificateAuthority.new
rescue => detail
puts detail.backtrace if Puppet[:trace]
puts detail.to_s
exit(23)
end
end
end
|