This commit is contained in:
Patrick Schleizer 2019-12-20 11:37:05 -05:00
parent cad6f328f4
commit b95225b6a6
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -8,6 +8,7 @@
#set -x
set -e
set -o pipefail
exit_code=0
@ -29,7 +30,7 @@ echo_wrapper_audit() {
add_nosuid_statoverride_entry() {
fso_to_process="${fso_without_trailing_slash}/"
should_be_counter="$(find "$fso_to_process" -perm /u=s,g=s | wc -l)"
should_be_counter="$(find "$fso_to_process" -perm /u=s,g=s | wc -l)" || true
counter_actual=0
while read -r line; do