Merge pull request #108 from Krish-sysadmin/master

Continue for loop if unable to change one directory's permission
This commit is contained in:
Patrick Schleizer 2022-07-09 11:37:57 -04:00 committed by GitHub
commit dc41a58102
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,9 +93,9 @@ if [ -d /sys/fs/selinux ]; then
for i in /sys/* /sys/fs/*
do
if [ "${sysfs_whitelist}" = "1" ]; then
chmod o-rwx "${i}"
chmod o-rwx "${i}" || continue
else
chmod og-rwx "${i}"
chmod og-rwx "${i}" || continue
fi
done
chmod o+rx /sys /sys/fs /sys/fs/selinux