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

Devin Teske dteske at FreeBSD.org
Mon Jan 20 03:39:08 UTC 2014


Author: dteske
Date: Mon Jan 20 03:39:08 2014
New Revision: 260900
URL: http://svnweb.freebsd.org/changeset/base/260900

Log:
  Dummy commit (whitespace changes and style nits) to show previous commit
  (SVN r260866) was [in-part] Submitted-by: Christoph Mallon ...
  <christoph.mallon at gmx.de>
  
  MFC After:	3 days
  X-MFC-With:	r260866

Modified:
  head/usr.sbin/bsdinstall/scripts/services

Modified: head/usr.sbin/bsdinstall/scripts/services
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/services	Mon Jan 20 03:31:16 2014	(r260899)
+++ head/usr.sbin/bsdinstall/scripts/services	Mon Jan 20 03:39:08 2014	(r260900)
@@ -29,7 +29,8 @@
 : ${DIALOG_OK=0}
 
 if [ -f $BSDINSTALL_TMPETC/rc.conf.services ]; then
-	eval `sed -e s/YES/on/i -e s/NO/off/i $BSDINSTALL_TMPETC/rc.conf.services`
+	eval $( sed -e s/YES/on/i -e s/NO/off/i \
+		$BSDINSTALL_TMPETC/rc.conf.services )
 else
 	# Default service states. Everything is off if not enabled.
 	sshd_enable="on"
@@ -38,16 +39,17 @@ fi
 echo -n > $BSDINSTALL_TMPETC/rc.conf.services
 
 exec 3>&1
-DAEMONS=$(dialog --backtitle "FreeBSD Installer" \
+DAEMONS=$( dialog --backtitle "FreeBSD Installer" \
     --title "System Configuration" --nocancel --separate-output \
     --checklist "Choose the services you would like to be started at boot:" \
     0 0 0 \
 	sshd	"Secure shell daemon" ${sshd_enable:-off} \
 	moused	"PS/2 mouse pointer on console" ${moused_enable:-off} \
 	ntpd	"Synchronize system and network time" ${ntpd_enable:-off} \
-	powerd	"Adjust CPU frequency dynamically if supported" ${powerd_enable:-off} \
+	powerd	"Adjust CPU frequency dynamically if supported" \
+		${powerd_enable:-off} \
 	dumpdev "Enable kernel crash dumps to /var/crash" ${dumpdev:-on} \
-2>&1 1>&3)
+2>&1 1>&3 )
 exec 3>&-
 
 havedump=


More information about the svn-src-all mailing list