summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Prabhu <sprabhu@redhat.com>2021-02-18 16:52:57 +0000
committerAnoop C S <anoopcs@cryptolab.net>2021-04-15 15:25:10 +0530
commit91adda4ea118f1eba69e3dea412726b4561f6b62 (patch)
tree87ca668833efc4c9f6853c5b65a0d9ed473148e6
parentdb9adf4dcf3101a984ce059cecde3b774e9508fd (diff)
downloadsamba-integration-91adda4ea118f1eba69e3dea412726b4561f6b62.tar.gz
samba-integration-91adda4ea118f1eba69e3dea412726b4561f6b62.tar.xz
samba-integration-91adda4ea118f1eba69e3dea412726b4561f6b62.zip
Add CentOS 8 specific actions for ctdb.setup
Signed-off-by: Sachin Prabhu <sprabhu@redhat.com>
-rw-r--r--vagrant/ansible/roles/ctdb.setup/tasks/centos8.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/vagrant/ansible/roles/ctdb.setup/tasks/centos8.yml b/vagrant/ansible/roles/ctdb.setup/tasks/centos8.yml
new file mode 100644
index 0000000..ebabc03
--- /dev/null
+++ b/vagrant/ansible/roles/ctdb.setup/tasks/centos8.yml
@@ -0,0 +1,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