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 70143198005 for ; Fri, 22 Mar 2013 19:56:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 047DAE059A; Fri, 22 Mar 2013 19:56:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 93E03E059A for ; Fri, 22 Mar 2013 19:56:07 +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 A85E233BE0E for ; Fri, 22 Mar 2013 19:56:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3F7F5E4073 for ; Fri, 22 Mar 2013 19:56:05 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1363981827.19fa20832c3783e134eb15866bcc1481c99a3f80.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/localmount.in X-VCS-Directories: init.d/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 19fa20832c3783e134eb15866bcc1481c99a3f80 X-VCS-Branch: master Date: Fri, 22 Mar 2013 19:56:05 +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: b95a2f77-203d-4137-80b9-b7c058a72fb4 X-Archives-Hash: 32f74563afadbcd58c1fa4790f002d0f commit: 19fa20832c3783e134eb15866bcc1481c99a3f80 Author: William Hubbs gmail com> AuthorDate: Fri Mar 22 19:50:27 2013 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Mar 22 19:50:27 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=19fa2083 localmount: add "no" in front of network file system types On Linux, this was not an issue, but we may have been attempting to mount network file systems twice on *bsd. Reported-by: powerman-asdf yandex.ru x-Gentoo-Bug: 462210 x-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=462210 --- init.d/localmount.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/init.d/localmount.in b/init.d/localmount.in index 9cbbd41..407c686 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in @@ -17,7 +17,7 @@ start() # Mount local filesystems in /etc/fstab. local types="noproc" x= no_netdev= for x in $net_fs_list $extra_net_fs_list; do - types="${types},${x}" + types="${types},no${x}" done if [ "$RC_UNAME" = Linux ]; then