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',
|
mode => '0755',
|
||||||
}
|
}
|
||||||
|
|
||||||
file { "/opt/sunet-cdn/conf/varnish-slash-seccomp.json":
|
file { '/opt/sunet-cdn/conf/varnish-slash-seccomp.json':
|
||||||
ensure => file,
|
ensure => file,
|
||||||
owner => 'root',
|
owner => 'root',
|
||||||
group => 'root',
|
group => 'root',
|
||||||
|
@ -81,18 +81,18 @@ class cdn::cache(
|
||||||
|
|
||||||
concat { $combined_pem:
|
concat { $combined_pem:
|
||||||
ensure => present,
|
ensure => present,
|
||||||
owner => $customer_uid,
|
owner => $customer_uid,
|
||||||
group => $customer_uid,
|
group => $customer_uid,
|
||||||
mode => '0640'.
|
mode => '0640',
|
||||||
}
|
}
|
||||||
|
|
||||||
concat::fragment { "$customer-fullchain-${$cache_secrets['customers'][$customer]['host']}":
|
concat::fragment { "${customer}.fullchain-${$cache_secrets['customers'][$customer]['host']}":
|
||||||
target => $combined_pem,
|
target => $combined_pem,
|
||||||
source => "/etc/letsencrypt/live/$cache_secrets['customers'][$customer]['host']/fullchain.pem",
|
source => "/etc/letsencrypt/live/$cache_secrets['customers'][$customer]['host']/fullchain.pem",
|
||||||
order => '01'
|
order => '01'
|
||||||
}
|
}
|
||||||
|
|
||||||
concat::fragment { "$customer-privkey-${$cache_secrets['customers'][$customer]['host']}":
|
concat::fragment { "${customer}-privkey-${$cache_secrets['customers'][$customer]['host']}":
|
||||||
target => $combined_pem,
|
target => $combined_pem,
|
||||||
source => "/etc/letsencrypt/live/$cache_secrets['customers'][$customer]['host']/privkey.pem",
|
source => "/etc/letsencrypt/live/$cache_secrets['customers'][$customer]['host']/privkey.pem",
|
||||||
order => '02'
|
order => '02'
|
||||||
|
|
Loading…
Add table
Reference in a new issue