Patrick Schleizer 2019-10-17 06:08:55 -04:00
parent 28a440091d
commit b05663c5f6
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -23,12 +23,12 @@ create_whitelist() {
fi
if grep -q "${1}" /etc/group; then
chmod o-rwx "${whitelist_path}"
## Changing the permissions of /sys recursively
## causes errors as the permissions of /sys/kernel/debug
## and /sys/fs/cgroup cannot be changed.
chgrp -fR "${1}" "${whitelist_path}" || true
chmod o-rwx "${whitelist_path}"
else
echo "ERROR: The ${1} group does not exist, the ${1} whitelist was not created."
fi