This commit is contained in:
Patrick Schleizer 2019-12-20 10:33:16 -05:00
parent 1ffa8e197e
commit 133d09f298
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -154,11 +154,6 @@ set_file_perms() {
continue
fi
if ! [ -e "$fso" ]; then
echo "INFO: fso: '$fso' - does not exist. This is likely normal."
continue
fi
fso_without_trailing_slash="${fso%/}"
if [ "$mode_from_config" = "whitelist" ]; then
@ -166,6 +161,11 @@ set_file_perms() {
continue
fi
if ! [ -e "$fso" ]; then
echo "INFO: fso: '$fso' - does not exist. This is likely normal."
continue
fi
## Use dpkg-statoverride so permissions are not reset during upgrades.
nosuid=""