From 5d5f526483a66ca32b19e3a6bdeaa4115fd287a1 Mon Sep 17 00:00:00 2001 From: iceBear67 Date: Mon, 22 Jun 2026 15:28:27 +0800 Subject: [PATCH] fix: init.d for bubble pointed to wrong position --- image/overlay/etc/init.d/auth-server | 4 ++-- image/overlay/etc/init.d/bubble | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/image/overlay/etc/init.d/auth-server b/image/overlay/etc/init.d/auth-server index 7c4e50b..e925207 100755 --- a/image/overlay/etc/init.d/auth-server +++ b/image/overlay/etc/init.d/auth-server @@ -1,5 +1,5 @@ #!/sbin/openrc-run -command="/bin/auth-server" +command="/usr/bin/auth-server" command_background=true command_args="-addr 0.0.0.0:8080 -root /users" command_user="keeper" @@ -8,4 +8,4 @@ pidfile="/run/${RC_SVCNAME}.pid" depend() { need net -} \ No newline at end of file +} diff --git a/image/overlay/etc/init.d/bubble b/image/overlay/etc/init.d/bubble index 28a6795..7bb6d40 100755 --- a/image/overlay/etc/init.d/bubble +++ b/image/overlay/etc/init.d/bubble @@ -4,7 +4,7 @@ depend() { need auth-server docker } -command="/bin/bubble" +command="/usr/bin/bubble" command_args="-config /daemon/config.yaml" pidfile="/run/${RC_SVCNAME}.pid" command_background=true