Issue #12191 has been updated by Kristof Willaert.
It does solve the remote signing of certs problem I was having with 2.7.12. Without it, I get this: <pre> $ puppet certificate generate testnode.lan --ca-location remote true $ puppet certificate sign testnode.lan --ca-location remote err: This process is not configured as a certificate authority err: Try 'puppet help certificate sign' for usage </pre> With the fix applied, the signing works: <pre> $ puppet certificate sign testnode.lan --ca-location remote "-----BEGIN CERTIFICATE-----\nMCUwGwIAMAMGAQAwADAEHwAfADAAMAgwAwYBAAMBADADBgEAAwEA\n-----END CERTIFICATE-----\n" </pre> ---------------------------------------- Bug #12191: Unable to remotely sign a SSL certificate via certificate face https://projects.puppetlabs.com/issues/12191#change-58394 Author: Nicholas Hubbard Status: Merged - Pending Release Priority: Normal Assignee: Category: Faces Target version: Telly Affected Puppet version: 2.7.10 Keywords: Branch: https://github.com/puppetlabs/puppet/pull/410 It is currently not possible to sign a certificate remotely using the certificate face. This is due to the fact that options[:ca_location] is a string and not a symbol. I have submitted pull request #410 (https://github.com/puppetlabs/puppet/pull/410) to resolv the problem. -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
