mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-02 07:11:47 +01:00
20 lines
864 B
Diff
20 lines
864 B
Diff
From 76a47f95b442a1ae5a9c7448566eaafd8863ca8d Mon Sep 17 00:00:00 2001
|
|
From: Willow Barraco <contact@willowbarraco.fr>
|
|
Date: Wed, 19 Jul 2023 09:38:09 +0200
|
|
Subject: [PATCH] Fix ckb-next-daemon OpenRC service file
|
|
|
|
---
|
|
linux/openrc/ckb-next-daemon.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/linux/openrc/ckb-next-daemon.in b/linux/openrc/ckb-next-daemon.in
|
|
index 4b154fca..26d38d93 100755
|
|
--- a/linux/openrc/ckb-next-daemon.in
|
|
+++ b/linux/openrc/ckb-next-daemon.in
|
|
@@ -7,4 +7,4 @@ command="@CMAKE_INSTALL_PREFIX@/bin/ckb-next-daemon"
|
|
description="Corsair Keyboards and Mice Daemon"
|
|
pidfile="/dev/input/ckb0/pid"
|
|
logfile="/var/log/${RC_SVCNAME}.log"
|
|
-start_stop_daemon_args+="--background --stdout ${logfile} --stderr ${logfile}"
|
|
+start_stop_daemon_args="$start_stop_daemon_args --background --stdout ${logfile} --stderr ${logfile}"
|