summaryrefslogtreecommitdiffstats
path: root/vagrant/ansible/roles/ctdb.setup/tasks/centos8.yml
blob: ebabc03d33c96657c4a24c1c7b4b736c6ff71df2 (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 python3-libsemanage. This is needed for the seboolean ansible command
  yum: name=python3-libsemanage state=present

- name: SELinux - Allow CTDB to access recovery lockfile from FUSE mount
  seboolean:
    name: use_fusefs_home_dirs
    state: yes
    persistent: yes