fuel-library/deployment/puppet/corosync/manifests/params.pp
Dmitry Ilyin 3b01fecf2e Fixes for pcmk_nodes and crm_node
* Use crm_node -n to get node's hostname
* Check if node is in cluster in service provider
* implement pacemaker nodes add in pcmk_nodes
* compatibility between fqdn and hostname in pcmk_nodes
* fix new node id and number generation in pcmk_nodes

Change-Id: I2e40e25df975621506141dfe78efa884255f1642
Related-Bug: 1451795
2015-05-14 17:29:05 +03:00

18 lines
530 B
Puppet

class corosync::params {
$enable_secauth = true
$authkey_source = 'file'
$authkey = '/etc/puppet/ssl/certs/ca.pem'
$threads = $::processorcount
$port = '5405'
$bind_address = $::ipaddress
$multicast_address = 'UNSET'
$corosync_nodes = 'UNSET'
$force_online = false
$check_standby = false
$debug = false
$rrp_mode = 'none'
$ttl = false
$packages = ['corosync', 'pacemaker']
$corosync_version = '1'
}