mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 05:57:14 +02:00
Otherwise broken since the libexec directory was changed in
950e9e71ba
Upstream: https://github.com/jirutka/apk-autoupdate/pull/19
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
Patch-Source: https://github.com/jirutka/apk-autoupdate/pull/19
|
|
---
|
|
From 1e575b255d49093801270aa93a2a16e5cd1df3a8 Mon Sep 17 00:00:00 2001
|
|
From: fossdd <fossdd@pwned.life>
|
|
Date: Thu, 14 Nov 2024 16:21:28 +0100
|
|
Subject: [PATCH] rc-service-pid: Use default OpenRC libexec directory
|
|
|
|
OpenRC defaults to /usr/libexec/rc as libexec dir. Alpine Linux uses the
|
|
default value in the next 3.21 release. Another option is to make this variable
|
|
configurable with a Makeflag, as this variable may not be the same on
|
|
all systems.
|
|
|
|
Ref: https://gitlab.alpinelinux.org/alpine/aports/-/commit/950e9e71ba7837c5f1d6ef83b3eae460f71b5e79
|
|
---
|
|
src/rc-service-pid.in | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/rc-service-pid.in b/src/rc-service-pid.in
|
|
index 3e0d142..4b3915e 100644
|
|
--- a/src/rc-service-pid.in
|
|
+++ b/src/rc-service-pid.in
|
|
@@ -15,7 +15,7 @@ if ( set -o pipefail 2>/dev/null ); then
|
|
set -o pipefail
|
|
fi
|
|
|
|
-readonly OPENRC_LIB='/lib/rc'
|
|
+readonly OPENRC_LIBEXEC='/usr/libexec/rc'
|
|
|
|
help() {
|
|
sed -En '/^#---help---/,/^#---help---/p' "$0" | sed -E 's/^# ?//; 1d;$d;'
|
|
@@ -31,7 +31,7 @@ started_services() {
|
|
|
|
# Prints value $2 of the service with name $1.
|
|
service_get_value() {
|
|
- RC_SVCNAME="$1" "$OPENRC_LIB"/bin/service_get_value "$2"
|
|
+ RC_SVCNAME="$1" "$OPENRC_LIBEXEC"/bin/service_get_value "$2"
|
|
}
|
|
|
|
# Prints PID of the service with name $1.
|