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 1QeTVd-0007sS-Cr for garchives@archives.gentoo.org; Wed, 06 Jul 2011 14:55:25 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 761FE21C03C; Wed, 6 Jul 2011 14:55:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 48BF321C03C for ; Wed, 6 Jul 2011 14:55:17 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8710C1BC022 for ; Wed, 6 Jul 2011 14:55:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id EE2CC8003D for ; Wed, 6 Jul 2011 14:55:15 +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: <9a068c2500b3d8d473900dfaaf7d3fb5d593862d.WilliamH@gentoo> Subject: [gentoo-commits] proj/openrc:master commit in: sh/ X-VCS-Repository: proj/openrc X-VCS-Files: sh/rc-functions.sh.in X-VCS-Directories: sh/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 9a068c2500b3d8d473900dfaaf7d3fb5d593862d Date: Wed, 6 Jul 2011 14:55:15 +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: e803626df26c27798fd1cfeb6bde625b commit: 9a068c2500b3d8d473900dfaaf7d3fb5d593862d Author: William Hubbs gentoo org> AuthorDate: Wed Jul 6 14:53:05 2011 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Jul 6 14:53:05 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3D9a068c25 The is_net_fs function should use extra_net_fs_list This was pointed out to me by Morse on #gentoo-base, so I would like to thank him for the patch. --- sh/rc-functions.sh.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sh/rc-functions.sh.in b/sh/rc-functions.sh.in index 50ba20b..de43074 100644 --- a/sh/rc-functions.sh.in +++ b/sh/rc-functions.sh.in @@ -50,7 +50,7 @@ is_net_fs() =20 # Fall back on fs types local t=3D$(mountinfo --fstype "$1") - for x in $net_fs_list; do + for x in $net_fs_list $extra_net_fs_list; do [ "$x" =3D "$t" ] && return 0 done return 1