From owner-svn-src-head@FreeBSD.ORG Mon Dec 9 23:05:25 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E164DAC4; Mon, 9 Dec 2013 23:05:25 +0000 (UTC) Received: from mail-pd0-x231.google.com (mail-pd0-x231.google.com [IPv6:2607:f8b0:400e:c02::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A46A6189D; Mon, 9 Dec 2013 23:05:25 +0000 (UTC) Received: by mail-pd0-f177.google.com with SMTP id q10so6043382pdj.36 for ; Mon, 09 Dec 2013 15:05:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=QS3Fk+c012lDmIGhuWjBhpRPM1sGAv78pMkRHQEOjIk=; b=F6U/mwkg3Fq+42FflJ1HuFGgI30sUTwAnWJMYriCRV2aTiSY31sLvGVpZoauKbZuB5 YGGVRlTwP6pjxofH89B8TcoifeqQ8u0ArB8JqsWZXnuV4bKozbWSTh+xj+053XhJLfcx 7pTCF7IYloN8WcH9xMhslxqh/IztyR14jUvmuAPFElu4gx4rbk5hHTr5MJR90S28LDx6 MiaSzZLjvZUkOlV+45sp2GUtWBfDJsmaqb14oNSaxyanPgwFXDthH0sS8O+lHvC7vxP7 4kjBqNDxUm/Yjq5CDRbRpQl/OsOSV7LJUoCjT9xrTn3O4Ow4oMBoZHcZtR8OoMKUIpVt +sig== X-Received: by 10.68.125.198 with SMTP id ms6mr23646050pbb.98.1386630325258; Mon, 09 Dec 2013 15:05:25 -0800 (PST) Received: from [10.192.166.0] (stargate.chelsio.com. [67.207.112.58]) by mx.google.com with ESMTPSA id bh6sm28755165pad.20.2013.12.09.15.05.22 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 09 Dec 2013 15:05:23 -0800 (PST) Sender: Navdeep Parhar Message-ID: <52A64CB1.4060201@FreeBSD.org> Date: Mon, 09 Dec 2013 15:05:21 -0800 From: Navdeep Parhar User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: Eitan Adler , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r259143 - head/usr.sbin/bsdinstall/scripts References: <201312092256.rB9MuJ1i027962@svn.freebsd.org> In-Reply-To: <201312092256.rB9MuJ1i027962@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 23:05:26 -0000 On 12/09/13 14:56, Eitan Adler wrote: > Author: eadler > Date: Mon Dec 9 22:56:19 2013 > New Revision: 259143 > URL: http://svnweb.freebsd.org/changeset/base/259143 > > Log: > sed(1): Use /i instead of /I > > the i modifier was added in r259132 since POSIX recently agreed to add > it. Switch uses of /I to /i. There doesn't seem to be any upside to this sort of change. The downside obviously is that it won't work with older sed's that don't understand /i. If you are considering sweeping over the entire tree looking for sed invocations and "fixing" them then please reconsider. Regards, Navdeep > > Modified: > head/usr.sbin/bsdinstall/scripts/services > > Modified: head/usr.sbin/bsdinstall/scripts/services > ============================================================================== > --- head/usr.sbin/bsdinstall/scripts/services Mon Dec 9 22:40:22 2013 (r259142) > +++ head/usr.sbin/bsdinstall/scripts/services Mon Dec 9 22:56:19 2013 (r259143) > @@ -29,7 +29,7 @@ > : ${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" >