Skip to content
Snippets Groups Projects
Unverified Commit a250665a authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman Committed by GitHub
Browse files

Merge pull request #361 from seocam/container-prepare-comments

Added comments to molecule prepare playbooks.
parents 4a628792 32f6ef18
No related branches found
No related tags found
No related merge requests found
# IPA depends on IPv6 and without it dirsrv service won't start.
- name: Ensure IPv6 is ENABLED - name: Ensure IPv6 is ENABLED
sysctl: sysctl:
name: "{{ item.name }}" name: "{{ item.name }}"
...@@ -13,6 +14,9 @@ ...@@ -13,6 +14,9 @@
- name: net.ipv6.conf.eth0.disable_ipv6 - name: net.ipv6.conf.eth0.disable_ipv6
value: 1 value: 1
# Set fs.protected_regular to 0
# This is needed in some IPA versions in order to get KRA enabled.
# See https://pagure.io/freeipa/issue/7906 for more information.
- name: stat protected_regular - name: stat protected_regular
stat: stat:
path: /proc/sys/fs/protected_regular path: /proc/sys/fs/protected_regular
......
...@@ -4,6 +4,12 @@ ...@@ -4,6 +4,12 @@
tasks: tasks:
- include_tasks: prepare-common.yml - include_tasks: prepare-common.yml
# In some distros DS won't start up after reboot
# This is due to a problem in 389-ds. See tickets:
# * https://pagure.io/389-ds-base/issue/47429
# * https://pagure.io/389-ds-base/issue/51039
#
# To avoid this problem we create the directories before starting IPA.
- name: Ensure lock dirs for DS exists - name: Ensure lock dirs for DS exists
file: file:
state: directory state: directory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment