fix incorrect permission assignment on tmp dir

This commit is contained in:
Asif Bacchus 2019-07-25 12:57:15 -06:00
parent f12aa53e54
commit 8fb80564dd
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ if ! exportDir=$( mktemp -d 2>>"$logFile" ); then
exitError 111 "Could not create temporary directory for exported EML files"
fi
# grant pilerUser permission to write to temporary directory
if ! chown root:${pilerUser} "$exportDir" && chmod 660 "$exportDir"; then
if ! chown root:${pilerUser} "$exportDir" && chmod 770 "$exportDir"; then
exitError 112 "Could not set permissions on temporary directory"
fi
if ! cd "$exportDir"; then