mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-08 14:23:11 +00:00
Debugging is now enabled by default in the containers that are generated with container_create. "+SYS_PTRACE" has been added to CAP_DEFAULTS in shdefaults for this.
10 lines
305 B
Bash
10 lines
305 B
Bash
#!/bin/bash -eu
|
|
# This file is meant to be source'd by other scripts
|
|
|
|
# Set default capabilities options for freeipa containers.
|
|
# Use +CAP to add the capability and -CAP to drop the capability.
|
|
CAP_DEFAULTS=(
|
|
"+DAC_READ_SEARCH" # Required for SSSD
|
|
"+SYS_PTRACE" # Required for debugging
|
|
)
|