blob: e96822c4c9a18f5f16e1b70804cf4c21de82951c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- name: Add ctdb package
yum:
name: ctdb
state: present
- name: Install libsemanage-python. This is needed for the seboolean ansible command
yum: name=libsemanage-python state=present
- name: SELinux - Allow CTDB to access recovery lockfile from FUSE mount
seboolean:
name: use_fusefs_home_dirs
state: yes
persistent: yes
|