Fix missing pass-through of cluster_auth_enabled parameter

pacemaker::new accepts parameter cluster_auth_enabled, but did
not pass this to pacemaker:🆕:setup. Therefore it was not
possible to enable cluster_auth with this parameter, since it defaults
to false in pacemaker:🆕:params.

Change-Id: I8d0cece9dfec82ed58035c876895881a4b918c82
This commit is contained in:
Christian Schulze-Wiehenbrauk 2018-04-18 14:32:44 +02:00
parent 44ef58ff99
commit 99b7eb09b7
1 changed files with 16 additions and 15 deletions

View File

@ -68,23 +68,24 @@ class pacemaker::new (
}
class { '::pacemaker::new::setup' :
pcsd_mode => $pcsd_mode,
pcsd_mode => $pcsd_mode,
# pcsd only
cluster_nodes => $cluster_nodes,
cluster_rrp_nodes => $cluster_rrp_nodes,
cluster_name => $cluster_name,
cluster_auth_key => $cluster_auth_key,
cluster_setup => $cluster_setup,
cluster_options => $cluster_options,
cluster_user => $cluster_user,
cluster_password => $cluster_password,
pcs_bin_path => $pcs_bin_path,
cluster_nodes => $cluster_nodes,
cluster_rrp_nodes => $cluster_rrp_nodes,
cluster_name => $cluster_name,
cluster_auth_key => $cluster_auth_key,
cluster_auth_enabled => $cluster_auth_enabled,
cluster_setup => $cluster_setup,
cluster_options => $cluster_options,
cluster_user => $cluster_user,
cluster_password => $cluster_password,
pcs_bin_path => $pcs_bin_path,
# config only
cluster_config_path => $cluster_config_path,
cluster_interfaces => $cluster_interfaces,
cluster_log_subsys => $cluster_log_subsys,
plugin_version => $plugin_version,
log_file_path => $log_file_path,
cluster_config_path => $cluster_config_path,
cluster_interfaces => $cluster_interfaces,
cluster_log_subsys => $cluster_log_subsys,
plugin_version => $plugin_version,
log_file_path => $log_file_path,
}
class { '::pacemaker::new::service' :