safe_asterisk: Change directory permissions to 755

If the safe_asterisk script detects that the /var/lib/asterisk
directory doesn't exist, it now creates it with 755 permissions
instead of 770.  safe_asterisk needing to create that directory
should be extremely rare though because it's normally created
by 'make install' which already sets the permissions to 755.

Resolves: #316
(cherry picked from commit c929146c61)
This commit is contained in:
George Joseph 2023-09-11 10:19:41 -06:00 committed by Asterisk Development Team
parent 38598701da
commit 52929efb83
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ else
if test ! -d "${ASTVARRUNDIR}"; then
mkdir -p "${ASTVARRUNDIR}"
chmod 770 "${ASTVARRUNDIR}"
chmod 755 "${ASTVARRUNDIR}"
fi
fi