From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4E1FD1381F3 for ; Tue, 6 Nov 2012 23:20:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A07D21C018; Tue, 6 Nov 2012 23:19:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id BC3A521C018 for ; Tue, 6 Nov 2012 23:19:49 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 09D5E33DC19 for ; Tue, 6 Nov 2012 23:19:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9550FE544D for ; Tue, 6 Nov 2012 23:19:47 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1352243888.ed3b0c66f9e90b8fafb7996b7700fd34db7ddc11.robbat2@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: net/ X-VCS-Repository: proj/openrc X-VCS-Files: net/bonding.sh X-VCS-Directories: net/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: ed3b0c66f9e90b8fafb7996b7700fd34db7ddc11 X-VCS-Branch: master Date: Tue, 6 Nov 2012 23:19:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 44f8fe79-b888-44cd-bfbc-6ffb5ba064b8 X-Archives-Hash: 76e3a4c91fc518db0ae7ce6040c0c95c commit: ed3b0c66f9e90b8fafb7996b7700fd34db7ddc11 Author: Robin H. Johnson gentoo org> AuthorDate: Tue Nov 6 23:18:08 2012 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Nov 6 23:18:08 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=ed3b0c66 net/bonding: checkbashisms. Signed-off-by: Robin H. Johnson gentoo.org> --- net/bonding.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/bonding.sh b/net/bonding.sh index 044ce21..c3e532a 100644 --- a/net/bonding.sh +++ b/net/bonding.sh @@ -136,7 +136,7 @@ bonding_pre_start() else # warn if root on nfs and no subsume interface supplied local root_fs_type=$(mountinfo -s /) - if [ "${root_fs_type}" == "nfs" ]; then + if [ "${root_fs_type}" = "nfs" ]; then warn_nfs=1 ewarn "NFS root detected!!!" ewarn " If your system crashes here, /etc/conf.d/net needs"