diff options
author | Matt Robinson <matt@puppetlabs.com> | 2011-07-26 13:11:17 -0700 |
---|---|---|
committer | Matt Robinson <matt@puppetlabs.com> | 2011-07-26 13:11:17 -0700 |
commit | d88923bb830336d7f5fc1e0809923e9a69126995 (patch) | |
tree | 01ace2791bae85f9013ac808328c1c110ca3e0f7 /lib/puppet/application/cert.rb | |
parent | b13427b56d8529731d0334d420b24a592ecb43ea (diff) | |
parent | 4857ac928ccf1bd56d513eae201b57b12dd14a38 (diff) | |
download | puppet-d88923bb830336d7f5fc1e0809923e9a69126995.tar.gz puppet-d88923bb830336d7f5fc1e0809923e9a69126995.tar.xz puppet-d88923bb830336d7f5fc1e0809923e9a69126995.zip |
Merge branch '2.7.x'
* 2.7.x:
maint: Suggest where to start troubleshooting SSL error message
maint: Fix cert app to print help and exit if no subcommand
Diffstat (limited to 'lib/puppet/application/cert.rb')
-rw-r--r-- | lib/puppet/application/cert.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/puppet/application/cert.rb b/lib/puppet/application/cert.rb index 162672b6a..330fba8bd 100644 --- a/lib/puppet/application/cert.rb +++ b/lib/puppet/application/cert.rb @@ -218,7 +218,8 @@ Copyright (c) 2011 Puppet Labs, LLC Licensed under the Apache 2.0 License if sub = self.command_line.args.shift then self.subcommand = sub else - help + puts help + exit end end result |