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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9896D15817D for ; Fri, 21 Jun 2024 13:14:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1BB8E2A01; Fri, 21 Jun 2024 13:14:16 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C5350E2A01 for ; Fri, 21 Jun 2024 13:14:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EFAE6335DC3 for ; Fri, 21 Jun 2024 13:14:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 539D61D4B for ; Fri, 21 Jun 2024 13:14:14 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1718086319.a3a1544a8631af9e79bddb408c29f2c4f5b1af55.sam@gentoo> Subject: [gentoo-commits] proj/gentoo-functions:master commit in: / X-VCS-Repository: proj/gentoo-functions X-VCS-Files: functions.sh X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a3a1544a8631af9e79bddb408c29f2c4f5b1af55 X-VCS-Branch: master Date: Fri, 21 Jun 2024 13:14:14 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6575a7f8-69ee-4911-bf53-18ab10781c5c X-Archives-Hash: f671a82eb1368453ec07ed4d41657e73 commit: a3a1544a8631af9e79bddb408c29f2c4f5b1af55 Author: Kerin Millar plushkava net> AuthorDate: Sat Jun 1 00:14:59 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jun 11 06:11:59 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=a3a1544a Add the has_openrc() and has_systemd() functions Signed-off-by: Kerin Millar plushkava.net> functions.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/functions.sh b/functions.sh index ec1f339..9736747 100644 --- a/functions.sh +++ b/functions.sh @@ -344,6 +344,24 @@ get_bootparam() return 1 ) +# +# Determines whether OpenRC appears to be operational as a service manager in +# the context of the present root filesystem namespace. +# +has_openrc() +{ + test -d /run/openrc +} + +# +# Determines whether systemd appears to be operational as a service manager in +# the context of the present root filesystem namespace. +# +has_systemd() +{ + test -d /run/systemd +} + # # Determines whether the first parameter is a valid identifier (variable name). #