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 1PliBQ-00046Z-0l for garchives@archives.gentoo.org; Sat, 05 Feb 2011 13:28:12 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52FD8E0AAF; Sat, 5 Feb 2011 13:28:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1D46CE0AAF for ; Sat, 5 Feb 2011 13:28:04 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7DBF41B40F3 for ; Sat, 5 Feb 2011 13:28:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id AB4E8800AA for ; Sat, 5 Feb 2011 13:28:02 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <43678fd2c44ec35acdcf0316c8ff3b07ee1e5f57.williamH@gentoo> Subject: [gentoo-commits] proj/openrc:master commit in: net/ X-VCS-Repository: proj/openrc X-VCS-Files: net/bridge.sh X-VCS-Directories: net/ X-VCS-Committer: williamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 43678fd2c44ec35acdcf0316c8ff3b07ee1e5f57 Date: Sat, 5 Feb 2011 13:28:02 +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: X-Archives-Hash: 87e100a2ea8bb9d2a4e6d86f4e38a7f3 commit: 43678fd2c44ec35acdcf0316c8ff3b07ee1e5f57 Author: Christian ch-sc de> AuthorDate: Sat Feb 5 13:24:11 2011 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat Feb 5 13:24:11 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3D43678fd2 bridge.sh: use correct POSIX test, =3D not =3D=3D X-Gentoo-Bug: 353124 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=3D353124 --- net/bridge.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/bridge.sh b/net/bridge.sh index 234a640..91e68d6 100644 --- a/net/bridge.sh +++ b/net/bridge.sh @@ -45,8 +45,8 @@ bridge_pre_start() eval bridge_unset=3D\${bridge_${IFVAR}-y\} eval brctl_unset=3D\${brctl_${IFVAR}-y\} =20 - if [ -z "${brif}" -a "${brctl_unset}" =3D=3D 'y' ]; then - if [ -z "${ports}" -a "${bridge_unset}" =3D=3D "y" ]; then + if [ -z "${brif}" -a "${brctl_unset}" =3D 'y' ]; then + if [ -z "${ports}" -a "${bridge_unset}" =3D "y" ]; then #eerror "Misconfigured static bridge detected (see net.example)" return 0 fi