Replace "." with ","
While here fix some variable usage and puppet-lint complaints
This commit is contained in:
parent
88e3771f6e
commit
ca9f7fbe50
1 changed files with 6 additions and 6 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue