summaryrefslogtreecommitdiffstats
path: root/lib/puppet/application
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2010-04-24 03:32:48 +1000
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commit5988f76aac63c4cb33c3e138c830eaf8aa4abfff (patch)
tree6a3d6a1a84379cf0109b9f124dd51fe7fd156db7 /lib/puppet/application
parent2c153b12921d67354ea0968ad81590a124ac8b75 (diff)
downloadpuppet-5988f76aac63c4cb33c3e138c830eaf8aa4abfff.tar.gz
puppet-5988f76aac63c4cb33c3e138c830eaf8aa4abfff.tar.xz
puppet-5988f76aac63c4cb33c3e138c830eaf8aa4abfff.zip
Fixes #3663 - It should be possible to list signed hosts only
Adds a --signed option to the --list feature that only displays signed certificates
Diffstat (limited to 'lib/puppet/application')
-rw-r--r--lib/puppet/application/cert.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/puppet/application/cert.rb b/lib/puppet/application/cert.rb
index a4ee5fef3..80ccc46f9 100644
--- a/lib/puppet/application/cert.rb
+++ b/lib/puppet/application/cert.rb
@@ -6,7 +6,7 @@ class Puppet::Application::Cert < Puppet::Application
should_parse_config
- attr_accessor :mode, :all, :ca, :digest
+ attr_accessor :mode, :all, :ca, :digest, :signed
def find_mode(opt)
modes = Puppet::SSL::CertificateAuthority::Interface::INTERFACE_METHODS
@@ -26,6 +26,10 @@ class Puppet::Application::Cert < Puppet::Application
@digest = arg
end
+ option("--signed", "-s") do
+ @signed = true
+ end
+
option("--debug", "-d") do |arg|
Puppet::Util::Log.level = :debug
end
@@ -43,6 +47,8 @@ class Puppet::Application::Cert < Puppet::Application
def main
if @all
hosts = :all
+ elsif @signed
+ hosts = :signed
else
hosts = command_line.args.collect { |h| puts h; h.downcase }
end