diff options
author | 2024-07-21 10:00:08 +0100 | |
---|---|---|
committer | 2024-07-21 10:11:31 +0100 | |
commit | b9eeb9decff7eb95e8c802c4d8447f9355af1b21 (patch) | |
tree | 3eca707a90d855fc4d7ec2e3db772492b09bf5ad /ansible | |
parent | Set hostnames of hosts to FQDNs (diff) |
Don't add limits to LDAP hosts
This prevented the IPA installation from completing, presumably because
it creates a high number of threads/subprocesses/whatever to get the
installation complete.
Regardless, with SELinux and other security tools that ship with the
Rocky security profile we are on. This should be fine. Limits are not a
security risk other than resource exhaustion which is not mission
critical here.
Signed-off-by: Joe Banks <[email protected]>
Diffstat (limited to 'ansible')
-rw-r--r-- | ansible/roles/common/tasks/main.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ansible/roles/common/tasks/main.yml b/ansible/roles/common/tasks/main.yml index a5978c8..3eebe38 100644 --- a/ansible/roles/common/tasks/main.yml +++ b/ansible/roles/common/tasks/main.yml @@ -52,6 +52,7 @@ owner: root group: root mode: "0444" + when: ansible_distribution == "Debian" tags: - role::common |