Replace "." with ","

While here fix some variable usage and puppet-lint complaints
This commit is contained in:
Patrik Lundin 2024-10-11 11:42:12 +02:00
parent 88e3771f6e
commit ca9f7fbe50
Signed by: patlu
GPG key ID: A0A812BA2249F294

View file

@ -31,7 +31,7 @@ class cdn::cache(
mode => '0755',
}
file { "/opt/sunet-cdn/conf/varnish-slash-seccomp.json":
file { '/opt/sunet-cdn/conf/varnish-slash-seccomp.json':
ensure => file,
owner => 'root',
group => 'root',
@ -81,18 +81,18 @@ class cdn::cache(
concat { $combined_pem:
ensure => present,
owner => $customer_uid,
group => $customer_uid,
mode => '0640'.
owner => $customer_uid,
group => $customer_uid,
mode => '0640',
}
concat::fragment { "$customer-fullchain-${$cache_secrets['customers'][$customer]['host']}":
concat::fragment { "${customer}.fullchain-${$cache_secrets['customers'][$customer]['host']}":
target => $combined_pem,
source => "/etc/letsencrypt/live/$cache_secrets['customers'][$customer]['host']/fullchain.pem",
order => '01'
}
concat::fragment { "$customer-privkey-${$cache_secrets['customers'][$customer]['host']}":
concat::fragment { "${customer}-privkey-${$cache_secrets['customers'][$customer]['host']}":
target => $combined_pem,
source => "/etc/letsencrypt/live/$cache_secrets['customers'][$customer]['host']/privkey.pem",
order => '02'