From f9676d1fe47a5b75af596efa8a42f437432d9120 Mon Sep 17 00:00:00 2001 From: iceBear67 Date: Sun, 5 Jul 2026 21:04:09 +0800 Subject: [PATCH] fix: use net-online instead of net to ensure internet connectivity --- image/overlay/etc/init.d/auth-server | 2 +- image/overlay/etc/init.d/bubble | 2 +- image/overlay/etc/init.d/tsdns | 2 +- 3 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 d80abfb..ad8909d 100755 --- a/image/overlay/etc/init.d/auth-server +++ b/image/overlay/etc/init.d/auth-server @@ -7,5 +7,5 @@ output_log="/data/auth-server.log" pidfile="/run/${RC_SVCNAME}.pid" depend() { - need net + need net-online } diff --git a/image/overlay/etc/init.d/bubble b/image/overlay/etc/init.d/bubble index 7018839..49ad1d6 100755 --- a/image/overlay/etc/init.d/bubble +++ b/image/overlay/etc/init.d/bubble @@ -1,7 +1,7 @@ #!/sbin/openrc-run depend() { - need auth-server docker tsdns + need docker tsdns } command="/usr/bin/bubble" diff --git a/image/overlay/etc/init.d/tsdns b/image/overlay/etc/init.d/tsdns index 5831fc1..8f4505f 100755 --- a/image/overlay/etc/init.d/tsdns +++ b/image/overlay/etc/init.d/tsdns @@ -1,7 +1,7 @@ #!/sbin/openrc-run depend() { - need docker net + need docker net-online } command="/usr/bin/tsdns"