From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 406B3158041 for ; Thu, 11 Apr 2024 05:25:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30BAA2BC01D; Thu, 11 Apr 2024 05:25:22 +0000 (UTC) Received: from gw1.antarean.org (gw1.antarean.org [194.145.200.214]) by pigeon.gentoo.org (Postfix) with ESMTP id 99A192BC013 for ; Thu, 11 Apr 2024 05:25:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by gw1.antarean.org (Postfix) with ESMTP id 4VFSnr6WrSzyX9 for ; Thu, 11 Apr 2024 05:25:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at antarean.org Received: from gw1.antarean.org ([127.0.0.1]) by localhost (gw1.antarean.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oeMwAi1qCs9G for ; Thu, 11 Apr 2024 05:25:20 +0000 (UTC) Received: from mailstore1.adm.antarean.org (localhost [127.0.0.1]) by gw1.antarean.org (Postfix) with ESMTP id 4VFSnr3T2VzySs for ; Thu, 11 Apr 2024 05:25:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mailstore1.adm.antarean.org (Postfix) with ESMTP id 4VFSnr29Z6z17 for ; Thu, 11 Apr 2024 05:25:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at antarean.org Received: from mailstore1.adm.antarean.org ([127.0.0.1]) by localhost (mailstore1.adm.antarean.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KDqMf__6Jpyi for ; Thu, 11 Apr 2024 05:19:57 +0000 (UTC) Received: from persephone.localnet (persephone.adm.antarean.org [10.55.16.48]) by mailstore1.adm.antarean.org (Postfix) with ESMTPA id 4VFSgd4SJmzD for ; Thu, 11 Apr 2024 05:19:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=antarean.org; s=default; t=1712812797; bh=PYHU48WVS9B2aSicLuMb1NyNhPSnZx7bgUId+t6p3Mg=; h=From:To:Subject:Date; b=M2chaI1Ol0p3XK3qcBtqlcIAvrT5RNsKeER0B1xc7Vz068uOhdYWAq14NSibcUo0J Pg25UhUQdPvEGS6brUwSlbTpH3kLwuN3+YVlY+2JgBbrT9Brdrtx3napXTV/YSEE8a 8PSP7sJRQlU1ekgsYAzmHrMs0+J4UnF07k+GpAog= From: "J. Roeleveld" To: gentoo-user@lists.gentoo.org Subject: [gentoo-user] How to find out all openrc dependencies? Date: Thu, 11 Apr 2024 07:19:57 +0200 Message-ID: <6041387.lOV4Wx5bFT@persephone> 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 X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Archives-Salt: 40660b67-aacb-4197-abc6-6e9d48ba9802 X-Archives-Hash: 16cb60e5cc72bf7565e39d0c02a7f903 Hi all, For a while I've been seeing the following ERROR-messages when booting 1 of my systems: * ERROR: cannot start multipathd as localmount would not start * ERROR: cannot start zfs-import as localmount would not start This isn't a big concern as these services will start correctly later: INIT: Entering runlevel: 3 * Starting multipathd ... [ ok ] * Importing ZFS pool(s) ... [ ok ] But I am trying to find the cause of these errors as they are preventing parallel-start from actually working correctly. When I check with "rc-depend", I don't see an obious cause: # /lib/rc/bin/rc-depend multipathd sysfs devfs udev udev-trigger modules fsck root localmount multipathd # /lib/rc/bin/rc-depend localmount sysfs devfs udev udev-trigger modules fsck root localmount # /lib/rc/bin/rc-depend zfs-import multipath sysfs devfs udev udev-trigger modules fsck root localmount multipathd zfs-import # /lib/rc/bin/rc-depend multipath multipath >From how I read these, it should be able to start "localmount" properly before even trying to start "multipathd" and "zfs-import" There is also no technical dependency for "localmount" (the root filesystem is not on ZFS on this system) Any help/suggestions on how to find the cause would be appreciated. -- Joost