Author: gonzo
Date: Mon Feb  4 10:24:16 2019
New Revision: 343739
URL: https://svnweb.freebsd.org/changeset/base/343739

Log:
  MFC r343391:
  
  Fix prompt for MFSROOT in tinybsd
  
  tinybsd offers two choices when prompting user for MFSROOT: 'YES'
  and 'NO'. Script logic only handles 'yes'. Change offered values
  to lower case.
  
  PR:           131059
  Submitted by: Brock Williams <br...@cotcomsol.com>

Modified:
  stable/12/tools/tools/tinybsd/tinybsd
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/tools/tools/tinybsd/tinybsd
==============================================================================
--- stable/12/tools/tools/tinybsd/tinybsd       Mon Feb  4 10:20:48 2019        
(r343738)
+++ stable/12/tools/tools/tinybsd/tinybsd       Mon Feb  4 10:24:16 2019        
(r343739)
@@ -206,7 +206,7 @@ loadconfig () {
       break
     fi
   done
-  MFSROOT=`confirm_action "$MFSROOT" "Use an MFSROOT? (YES/NO)"`
+  MFSROOT=`confirm_action "$MFSROOT" "Use an MFSROOT? (yes/no)"`
   IMG=`confirm_action "$IMG" "Image file to generate?"`
 
 # example of formatted value (NNN in this case)
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to