Leave salt dir world read/execute

This commit is contained in:
Daniel A. Wozniak 2023-04-30 16:23:08 -07:00 committed by Gareth J. Greenaway
parent fb6906f9d2
commit 6c66467269

View file

@ -34,7 +34,8 @@ case "$1" in
if ! dpkg-statoverride --list $SALT_HOME >/dev/null
then
chown -R $SALT_USER:$SALT_GROUP $SALT_HOME
chmod u=rwx,g=rwx,o= $SALT_HOME
# Tests fail when we remove world execute
# chmod u=rwx,g=rwx,o= $SALT_HOME
fi
;;
esac