Date: Mon, 21 Jan 2013 14:06:34 +0000 (UTC) From: Nathan Whitehorn <nwhitehorn@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r245742 - head/release Message-ID: <201301211406.r0LE6Yvv029329@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: nwhitehorn Date: Mon Jan 21 14:06:33 2013 New Revision: 245742 URL: http://svnweb.freebsd.org/changeset/base/245742 Log: Fix typo and simplify condition. Submitted by: Christoph Mallon <christoph dot mallon at gmx dot de> Modified: head/release/rc.local Modified: head/release/rc.local ============================================================================== --- head/release/rc.local Mon Jan 21 08:59:31 2013 (r245741) +++ head/release/rc.local Mon Jan 21 14:06:33 2013 (r245742) @@ -46,8 +46,7 @@ fi export TERM if [ -f /etc/installerconfig ]; then - bsdinstall script /etc/installerconfig - if [ $? -eq 0]; then + if bsdinstall script /etc/installerconfig; then dialog --backtitle "FreeBSD Installer" --title "Complete" --no-cancel --ok-label "Reboot" --pause "Installation of FreeBSD complete! Rebooting in 10 seconds" 10 30 10 reboot else
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301211406.r0LE6Yvv029329>