From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RaMF7-0003iv-8F for garchives@archives.gentoo.org; Tue, 13 Dec 2011 06:53:37 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E94821C068; Tue, 13 Dec 2011 06:53:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1AC8721C068 for ; Tue, 13 Dec 2011 06:53:30 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 084721B4014 for ; Tue, 13 Dec 2011 06:53:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id F21B98004A for ; Tue, 13 Dec 2011 06:53:27 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: Subject: [gentoo-commits] proj/openrc:master commit in: net/ X-VCS-Repository: proj/openrc X-VCS-Files: net/vlan.sh X-VCS-Directories: net/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: ac2391e0cba6b9b19660de1a76c5609cc0d3b05e Date: Tue, 13 Dec 2011 06:53:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: f8d89983-1f68-4df4-8869-f78b8697d9c7 X-Archives-Hash: ae14ce5101afe6e19350a6422e6962a1 commit: ac2391e0cba6b9b19660de1a76c5609cc0d3b05e Author: Robin H. Johnson gentoo org> AuthorDate: Tue Dec 13 06:52:09 2011 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Dec 13 06:52:09 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3Dac2391e0 net/vlan: Fix mtu setting Fix minor shell typo that broke setting mtu on vlans. X-Gentoo-Bug: 392971 X-Gentoo-Bug-URL: https://bugs.gentoo.org/392971 Signed-off-by: Robin H. Johnson gentoo.org> --- net/vlan.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/vlan.sh b/net/vlan.sh index 6eed36b..9cce3b9 100644 --- a/net/vlan.sh +++ b/net/vlan.sh @@ -85,7 +85,7 @@ vlan_post_start() eval broadcast=3D\$broadcast_vlan${vlan} local mtu=3D eval mtu=3D\$mtu_vlan${vlan} - local opts=3D"${txqueuelen:+txqueuelen} ${txqueuelen} ${mac:+address} = ${mac} ${broadcast:+broadcast} ${broadcast} ${mtu+:mtu} ${mtu}" + local opts=3D"${txqueuelen:+txqueuelen} ${txqueuelen} ${mac:+address} = ${mac} ${broadcast:+broadcast} ${broadcast} ${mtu:+mtu} ${mtu}" =20 e=3D"$(ip link add link "${IFACE}" name "${vname}" ${opts} type vlan i= d "${vlan}" ${vflags} ${vingress} ${vegress} 2>&1 1>/dev/null)" if [ -n "${e}" ]; then