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 2ECB115817D for ; Fri, 21 Jun 2024 13:14:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8EFDE2AB1; Fri, 21 Jun 2024 13:14:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82796E2AB2 for ; Fri, 21 Jun 2024 13:14:20 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 699AD33FE7D for ; Fri, 21 Jun 2024 13:14:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0830E1D60 for ; Fri, 21 Jun 2024 13:14:16 +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: <1718324864.5ca33b525b56f0e255e2e3bb35441b78b23aee4a.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: 5ca33b525b56f0e255e2e3bb35441b78b23aee4a X-VCS-Branch: master Date: Fri, 21 Jun 2024 13:14:16 +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: 14db1d0f-ef89-41e0-8c8b-2ca7c92ecc0d X-Archives-Hash: bdf93247687dbadcadf0ce39f4d07302 commit: 5ca33b525b56f0e255e2e3bb35441b78b23aee4a Author: Kerin Millar plushkava net> AuthorDate: Wed Jun 12 05:41:22 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 14 00:27:44 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=5ca33b52 Add the from_unit() function The function determines whether the current shell is a subprocess of a systemd unit that handles a service, socket, mount point or swap device, per systemd.exec(5). Signed-off-by: Kerin Millar plushkava.net> functions.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/functions.sh b/functions.sh index 605aa48..7d146c8 100644 --- a/functions.sh +++ b/functions.sh @@ -324,6 +324,15 @@ from_runscript() has_openrc && test "${RC_OPENRC_PID}" } +# +# Determines whether the current shell is a subprocess of a systemd unit that +# handles a service, socket, mount point or swap device, per systemd.exec(5). +# +from_unit() +{ + has_systemd && test "${SYSTEMD_EXEC_PID}" && test "${INVOCATION_ID}" +} + # # Determines whether the kernel cmdline contains the specified parameter as a # component of a comma-separated list specified in the format of gentoo=.