We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$::fqdn = 'TEST-BOX-1.example.com' letsencrypt::certonly { 'example': domains => [$::fqdn, 'mydomain.example.com'], }
The certificate gets created with test-box-1.example.com,mydomain.example.com.
test-box-1.example.com,mydomain.example.com
But when the letsencrypt-domain-validation script runs as part of the unless:
Debug: Exec[letsencrypt certonly postfix](provider=shell): Executing check '["/bin/sh", "-c", "/usr/local/sbin/letsencrypt-domain-validation /etc/letsencrypt/live/example/cert.pem 'TEST-BOX-1.example.com' 'mydomain.example.com'"]'
This fails because the domains in the certificate do not match the input (due to case sensitivity)
The script should convert input to lowercase
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Affected Puppet, Ruby, OS and module versions/distributions
How to reproduce (e.g Puppet code you use)
What are you seeing
The certificate gets created with
test-box-1.example.com,mydomain.example.com
.But when the letsencrypt-domain-validation script runs as part of the unless:
This fails because the domains in the certificate do not match the input (due to case sensitivity)
What behaviour did you expect instead
The script should convert input to lowercase
The text was updated successfully, but these errors were encountered: