bsdinstall/zfsboot should create /tmp and /var/tmp if they do not exist

PR:		208629
PR:		208568
Submitted by:	Galael LAPLANCHE <ganael.laplanche@corp.ovh.com>
MFC after:	2 weeks
This commit is contained in:
Allan Jude 2016-04-08 15:08:22 +00:00
parent 6b5e33ba48
commit b3f7b13945
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=297713

View File

@ -1256,6 +1256,8 @@ zfs_create_boot()
f_dprintf "$funcname: Modifying directory permissions..."
local dir
for dir in /tmp /var/tmp; do
f_eval_catch $funcname mkdir "$MKDIR_P" \
$BSDINSTALL_CHROOT$dir || return $FAILURE
f_eval_catch $funcname chmod "$CHMOD_MODE" 1777 \
$BSDINSTALL_CHROOT$dir || return $FAILURE
done