Make sure $TMPDIR is created with 0755 permissions

This is required to ensure that the temporary script can be executed,
as the default mode is apparently too restrictive

MFC after:	3 days
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Enji Cooper 2016-09-18 05:06:15 +00:00
parent efe00fd923
commit 9cd2207265
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=305916

View File

@ -36,6 +36,10 @@ if ! sysctl -N security.mac.bsdextended >/dev/null 2>&1; then
echo "1..0 # SKIP mac_bsdextended(4) support isn't available"
exit 0
fi
if ! chmod -Rf 0755 $TMPDIR; then
echo "1..0 # SKIP failed to chmod $TMPDIR"
exit 0
fi
if ! playground=$(mktemp -d $TMPDIR/tmp.XXXXXXX); then
echo "1..0 # SKIP failed to create temporary directory"
exit 0