summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-01-10 16:01:12 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-01-10 16:01:12 +0000
commit45c91e30c848011ff729505441fbf47a7f8df8fc (patch)
tree866d25f822146fbd8841ac7e917e311bc189e3b0
parent7616289784c7c04d765866b1786ca3a9c854147a (diff)
downloadpuppet-45c91e30c848011ff729505441fbf47a7f8df8fc.tar.gz
puppet-45c91e30c848011ff729505441fbf47a7f8df8fc.tar.xz
puppet-45c91e30c848011ff729505441fbf47a7f8df8fc.zip
Adding some extra feedback
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@797 980ebf18-57e1-0310-9a29-db15c13687c0
-rwxr-xr-xbin/puppetca6
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/puppetca b/bin/puppetca
index af1c94576..ec76339f0 100755
--- a/bin/puppetca
+++ b/bin/puppetca
@@ -163,6 +163,11 @@ when :sign
end
unless all
+ ARGV.each { |host|
+ unless hosts.include?(host)
+ $stderr.puts "No waiting request for %s" % host
+ end
+ }
hosts = hosts.find_all { |host|
ARGV.include?(host)
}
@@ -177,6 +182,7 @@ when :sign
begin
ca.sign(csr)
+ $stderr.puts "Signed %s" % host
rescue => detail
$stderr.puts "Could not sign request for %s: %s" % [host, detail]
end