Project

General

Profile

« Previous | Next » 

Revision 56b323b0

Added by Ewoud Kohl van Wijngaarden about 7 years ago

Make variable usage and indenting consistent

  • Use the absolute $::certs::
  • Use local variables where possible
  • Correct indenting

View differences:

manifests/foreman.pp
# Handles Foreman certs configuration
class certs::foreman (
$hostname = $::certs::node_fqdn,
$cname = $::certs::cname,
$generate = $::certs::generate,
......
$client_cert = $::certs::params::foreman_client_cert,
$client_key = $::certs::params::foreman_client_key,
$ssl_ca_cert = $::certs::params::foreman_ssl_ca_cert
) inherits certs::params {
) inherits certs::params {
$client_cert_name = "${::certs::foreman::hostname}-foreman-client"
$client_cert_name = "${hostname}-foreman-client"
# cert for authentication of puppetmaster against foreman
cert { $client_cert_name:
hostname => $::certs::foreman::hostname,
cname => $::certs::foreman::cname,
purpose => client,
hostname => $hostname,
cname => $cname,
purpose => 'client',
country => $::certs::country,
state => $::certs::state,
city => $::certs::city,
......
generate => $generate,
regenerate => $regenerate,
deploy => $deploy,
password_file => $certs::ca_key_password_file,
password_file => $::certs::ca_key_password_file,
}
if $deploy {

Also available in: Unified diff