Bug #18040
closedCertificates with OU= give an error when listing smart-proxy cert list.
Description
When a certificate containing an OU (possibly any other field than CN) is signed. An error occurs when viewing cert list page.
Possibly, the id of the certificate is not parsed correctly and ends up containing a '/' character which is not allowed.
The certificate could be parsed in the manner puppet does it https://github.com/puppetlabs/puppet/blob/master/lib/puppet/util/ssl.rb#L44 to avoid this issue.
Files
Added by Daniel Lobato Garcia over 8 years ago
Added by Daniel Lobato Garcia over 8 years ago
Fixes #18040 - URL escape PuppetCA CN on proxy view
If the CN contains characters that cannot be displayed in an URL, like
'mcollective/OL=mcollective', the puppetca list will not be able to
render.
The reason is that Rails cannot generate an URL for such CNs, so we need
to convert it into URL-friendly style.
(cherry picked from commit 73633f3db179f47a582b8ca2f31a9e430c10f4fb)
Fixes #18040 - URL escape PuppetCA CN on proxy view
If the CN contains characters that cannot be displayed in an URL, like
'mcollective/OL=mcollective', the puppetca list will not be able to
render.
The reason is that Rails cannot generate an URL for such CNs, so we need
to convert it into URL-friendly style.