diff options
author | Jesse Wolfe <jes5199@gmail.com> | 2010-04-20 14:15:06 -0700 |
---|---|---|
committer | test branch <puppet-dev@googlegroups.com> | 2010-02-17 06:50:53 -0800 |
commit | 6bdda8c65e55fcdab896cee9985bca3593c66c95 (patch) | |
tree | 1296965e3b7290ad1990d36aff87f3dc758caee8 /lib/puppet | |
parent | f9783fcdee928c80339b2b1567350b2450e1ea05 (diff) | |
download | puppet-6bdda8c65e55fcdab896cee9985bca3593c66c95.tar.gz puppet-6bdda8c65e55fcdab896cee9985bca3593c66c95.tar.xz puppet-6bdda8c65e55fcdab896cee9985bca3593c66c95.zip |
feature #2276 Single Executable: "puppet cert"
Add "puppet cert" as the new invocation of "puppetca"
Signed-off-by: Jesse Wolfe <jes5199@gmail.com>
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/application/cert.rb (renamed from lib/puppet/application/ca.rb) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/application/ca.rb b/lib/puppet/application/cert.rb index ab7f607ee..f48e5301a 100644 --- a/lib/puppet/application/ca.rb +++ b/lib/puppet/application/cert.rb @@ -2,7 +2,7 @@ require 'puppet' require 'puppet/application' require 'puppet/ssl/certificate_authority' -Puppet::Application.new(:ca) do +Puppet::Application.new(:cert) do should_parse_config |