From 73d3a70ea065cc15fa18fbe69f8122dd1dd54a15 Mon Sep 17 00:00:00 2001 From: Mark Small Date: Mon, 5 May 2014 17:53:26 +0100 Subject: [PATCH] Fix bug in cert arguments: * clean option had an extra single quote. * fingerprint option had a single quote as part of the text so changed outer quotes to double quotes. --- custom/plugins/puppet/_puppet | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom/plugins/puppet/_puppet b/custom/plugins/puppet/_puppet index 630931d7a..7d4ec6f00 100644 --- a/custom/plugins/puppet/_puppet +++ b/custom/plugins/puppet/_puppet @@ -120,8 +120,8 @@ _catalog_arguments=( local -a _cert_arguments _cert_arguments=( - "clean:'Revoke a host's certificate (if applicable) and remove all files related to that host from puppet cert's storage" - 'fingerprint:Print the DIGEST (defaults to the signing algorithm) fingerprint of a host's certificate' + "clean:Revoke a host's certificate (if applicable) and remove all files related to that host from puppet cert's storage" + "fingerprint:Print the DIGEST (defaults to the signing algorithm) fingerprint of a host's certificate" 'generate:Generate a certificate for a named client' 'list:List outstanding certificate requests' "print:Print the full-text version of a host's certificate."