Make sure /home exists within the DESTDIR before creating the

'freebsd' user account.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2015-06-04 23:11:24 +00:00
parent 3a1da00bd9
commit 0bf3ddb7a7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284004

View File

@ -82,6 +82,7 @@ arm_create_user() {
# and set the default password for the 'root' user to 'root'.
chroot ${CHROOTDIR} /usr/sbin/pw -R ${DESTDIR} \
groupadd freebsd -g 1001
chroot ${CHROOTDIR} mkdir -p ${DESTDIR}/home
chroot ${CHROOTDIR} /usr/sbin/pw -R ${DESTDIR} \
useradd freebsd \
-m -M 0755 -w yes -n freebsd -u 1001 -g 1001 -G 0 \