File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ Deploys corosync/pacemaker
6
6
# Variables
7
7
8
8
- ` pacemaker_corosync_group ` : Ansible group name for corosync cluster (default: false, * mandatory* )
9
- - ` pacemaker_remote_group ` : Ansible group name for pacemaker-remote cluster (default: false)
9
+ - ` pacemaker_remote_group ` : Ansible group name for pacemaker-remote cluster (default: false, * mandatory * )
10
10
- ` pacemaker_corosync_ring_interface ` : Interface to use for ring0 communications (default: false, * mandatory* )
11
11
- ` pacemaker_corosync_fqdn ` : Whether use inventory_hostname or ansible_fqdn as node name for corosync (default: false)
Original file line number Diff line number Diff line change 18
18
state : present
19
19
with_items :
20
20
- pacemaker
21
- when : " 'pacemaker_corosync_group' in group_names "
21
+ when : " inventory_hostname in groups[pacemaker_corosync_group] "
22
22
23
23
- name : Installs pacemaker-remote
24
24
package :
25
25
name : " {{ item }}"
26
26
state : present
27
27
with_items :
28
28
- pacemaker-remote
29
- when : " 'pacemaker_remote_group' in group_names "
29
+ when : " inventory_hostname in groups[pacemaker_remote_group] "
30
30
31
31
- name : Install haveged
32
32
package :
You can’t perform that action at this time.
0 commit comments