Giuseppe Lavagetto has submitted this change and it was merged. Change subject: puppetsigner: only fetch unsigned certs ......................................................................
puppetsigner: only fetch unsigned certs Change-Id: I343cf516d3e0e015fb6dd42e1fbc0ca9b06cc64e Signed-off-by: Giuseppe Lavagetto <[email protected]> --- M modules/puppetmaster/files/puppetsigner.py 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Giuseppe Lavagetto: Verified; Looks good to me, approved diff --git a/modules/puppetmaster/files/puppetsigner.py b/modules/puppetmaster/files/puppetsigner.py index 8593d5a..1699ec3 100755 --- a/modules/puppetmaster/files/puppetsigner.py +++ b/modules/puppetmaster/files/puppetsigner.py @@ -29,7 +29,7 @@ ldapSupportLib.setBindInfoByOptions(options, parser) ds = ldapSupportLib.connect() try: - proc = subprocess.Popen('/usr/bin/puppet cert list --all', shell=True, stdout=subprocess.PIPE) + proc = subprocess.Popen('/usr/bin/puppet cert list', shell=True, stdout=subprocess.PIPE) hosts = proc.communicate() hosts = hosts[0].split() for host in hosts: -- To view, visit https://gerrit.wikimedia.org/r/137935 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I343cf516d3e0e015fb6dd42e1fbc0ca9b06cc64e Gerrit-PatchSet: 1 Gerrit-Project: operations/puppet Gerrit-Branch: production Gerrit-Owner: Giuseppe Lavagetto <[email protected]> Gerrit-Reviewer: Giuseppe Lavagetto <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
