From owner-svn-src-head@freebsd.org Sun Oct 21 07:46:59 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DA28FD90E5; Sun, 21 Oct 2018 07:46:59 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AECAD8023F; Sun, 21 Oct 2018 07:46:58 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id w9L7ksID003892; Sun, 21 Oct 2018 00:46:54 -0700 (PDT) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id w9L7ks7R003891; Sun, 21 Oct 2018 00:46:54 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201810210746.w9L7ks7R003891@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r339462 - head/libexec/rc In-Reply-To: <201810201801.w9KI1mYV025953@repo.freebsd.org> To: Eugene Grosbein Date: Sun, 21 Oct 2018 00:46:54 -0700 (PDT) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 21 Oct 2018 07:46:59 -0000 > Author: eugen > Date: Sat Oct 20 18:01:48 2018 > New Revision: 339462 > URL: https://svnweb.freebsd.org/changeset/base/339462 > > Log: > Make upgrade from previous FreeBSD versions less painful > and make previously working configuration like this work again: > > gif_interfaces="gif0" > gifconfig_gif0="1.1.1.1 2.2.2.2" > ifconfig_gif0="inet 192.168.1.1 192.168.1.2 netmask 255.255.255.252" > > PR: 204700 > MFC after: 1 month Are you intentionally not wanting this to make 12.0 release? > > Modified: > head/libexec/rc/network.subr > > Modified: head/libexec/rc/network.subr > ============================================================================== > --- head/libexec/rc/network.subr Sat Oct 20 18:01:15 2018 (r339461) > +++ head/libexec/rc/network.subr Sat Oct 20 18:01:48 2018 (r339462) > @@ -1393,7 +1393,7 @@ clone_up() > _list="$_list $ifn" > fi > tmpargs=$(get_if_var $ifn gifconfig_IF) > - eval ifconfig_${ifn}=\"tunnel \$tmpargs\" > + eval ifconfig_${ifn}=\"\$ifconfig_${ifn} tunnel \$tmpargs\" > done > if [ -n "${_list# }" ]; then > echo "Created clone interfaces: ${_list# }." > > -- Rod Grimes rgrimes@freebsd.org