svn commit: r284010 - head/release/tools

Glen Barber gjb at FreeBSD.org
Fri Jun 5 02:22:05 UTC 2015


Author: gjb
Date: Fri Jun  5 02:22:04 2015
New Revision: 284010
URL: https://svnweb.freebsd.org/changeset/base/284010

Log:
  Work around a potential bug in pw(8) when '-m' is specified.
  According to the manual page, '-m' should create the user home
  directory, however rigorous testing suggests it does not, and
  it is unclear if this is an implementation or expectation issue.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/release/tools/arm.subr

Modified: head/release/tools/arm.subr
==============================================================================
--- head/release/tools/arm.subr	Fri Jun  5 00:46:49 2015	(r284009)
+++ head/release/tools/arm.subr	Fri Jun  5 02:22:04 2015	(r284010)
@@ -82,7 +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} mkdir -p ${DESTDIR}/home/freebsd
 	chroot ${CHROOTDIR} /usr/sbin/pw -R ${DESTDIR} \
 		useradd freebsd \
 		-m -M 0755 -w yes -n freebsd -u 1001 -g 1001 -G 0 \


More information about the svn-src-all mailing list