svn commit: r225065 - head/usr.sbin/bsdinstall/scripts

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sun Aug 21 18:49:29 UTC 2011


Author: nwhitehorn
Date: Sun Aug 21 18:49:28 2011
New Revision: 225065
URL: http://svn.freebsd.org/changeset/base/225065

Log:
  Make messages about typos appear on the screen instead of in the log file.
  
  Reported by:	lev
  Approved by:	re (kib)

Modified:
  head/usr.sbin/bsdinstall/scripts/adduser
  head/usr.sbin/bsdinstall/scripts/rootpass

Modified: head/usr.sbin/bsdinstall/scripts/adduser
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/adduser	Sun Aug 21 18:23:09 2011	(r225064)
+++ head/usr.sbin/bsdinstall/scripts/adduser	Sun Aug 21 18:49:28 2011	(r225065)
@@ -31,4 +31,4 @@ echo "FreeBSD Installer"
 echo "========================"
 echo "Add Users"
 echo
-chroot $BSDINSTALL_CHROOT adduser
+chroot $BSDINSTALL_CHROOT adduser 2>&1

Modified: head/usr.sbin/bsdinstall/scripts/rootpass
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/rootpass	Sun Aug 21 18:23:09 2011	(r225064)
+++ head/usr.sbin/bsdinstall/scripts/rootpass	Sun Aug 21 18:49:28 2011	(r225065)
@@ -33,5 +33,5 @@ echo
 
 echo "Please select a password for the system management account (root):"
 
-chroot $BSDINSTALL_CHROOT passwd root
+chroot $BSDINSTALL_CHROOT passwd root 2>&1
 


More information about the svn-src-all mailing list