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 1QxNK6-0007Yj-DY for garchives@archives.gentoo.org; Sat, 27 Aug 2011 18:09:38 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5AC621C2C0; Sat, 27 Aug 2011 18:09:24 +0000 (UTC) Received: from mx.virtyou.com (mx.virtyou.com [94.23.166.77]) by pigeon.gentoo.org (Postfix) with ESMTP id 7F1C321C170 for ; Sat, 27 Aug 2011 18:08:27 +0000 (UTC) Received: from weird.localnet (xdsl-78-35-168-34.netcologne.de [78.35.168.34]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx.virtyou.com (Postfix) with ESMTPSA id CCDA539A00B for ; Sat, 27 Aug 2011 20:08:26 +0200 (CEST) From: Alex Schuster To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] rc-svcdir mount where from? Date: Sat, 27 Aug 2011 20:08:23 +0200 Message-ID: <1581460.4EaZMVgbQ3@weird> Organization: Wonkology User-Agent: KMail/4.7.0 (Linux/2.6.38-pf8; KDE/4.7.0; x86_64; ; ) In-Reply-To: <1314467087.537177@rumba> References: <1314467087.537177@rumba> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Archives-Salt: X-Archives-Hash: 336bc1cf589f5a61f53cc238e40f5d6d Konstantinos Agouros writes: > I do not have rc-svcdir in /etc/fstab. I know it comes with openrc but > I would need the mount line or an fstab entry for it. A grep in > /etc/init.d didn't help. You need to look into /lib/rc/sh/init.sh, the mount_svcdir() function: /lib/rc/sh/init.sh: mount -n -t "$fs" $fsopts rc-svcdir "$RC_SVCDIR" You can get the actual content of the $fs and $fsopts variables from the output of mount | grep svcdir. Wonko