Skip to content

Commit c43b1a6

Browse files
Merge pull request #51 from aussielunix/Bugfix/puppet_ssldir
Bugfix/puppet ssldir
2 parents 3f9a1f9 + 7255f8d commit c43b1a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

manifests/master.pp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@
121121
puppet_docroot => $puppet_docroot,
122122
apache_serveradmin => $apache_serveradmin,
123123
puppet_conf => $::puppet::params::puppet_conf,
124-
puppet_ssldir => $::puppet::params::puppet_ssldir,
124+
puppet_ssldir => $puppet_ssldir,
125125
certname => $certname,
126126
conf_dir => $::puppet::params::confdir,
127-
dns_alt_names => join($dns_alt_names,","),
127+
dns_alt_names => join($dns_alt_names,','),
128128
} ->
129129
Anchor['puppet::master::end']
130130

@@ -272,7 +272,7 @@
272272
ini_setting {'puppetmasterdnsaltnames':
273273
ensure => present,
274274
setting => 'dns_alt_names',
275-
value => join($dns_alt_names, ","),
275+
value => join($dns_alt_names, ','),
276276
}
277277

278278
ini_setting {'puppetmasterdigestalgorithm':

0 commit comments

Comments
 (0)