fix:use_musl

fix:arch_x86_64
This commit is contained in:
dichgrem
2025-09-23 12:30:05 +08:00
parent 7b76d43741
commit 569ca89fcc
8 changed files with 21 additions and 21 deletions

View File

@@ -24,11 +24,11 @@ function service_control()
if action then
local cmd = ""
if action == "start" then
cmd = "/etc/rc.d/S99zzz start"
cmd = "/etc/rc.d/zzz start"
elseif action == "stop" then
cmd = "/etc/rc.d/S99zzz stop"
cmd = "/etc/rc.d/zzz stop"
elseif action == "restart" then
cmd = "/etc/rc.d/S99zzz stop && sleep 2 && /etc/rc.d/S99zzz start"
cmd = "/etc/rc.d/zzz stop && sleep 2 && /etc/rc.d/zzz start"
end
if cmd ~= "" then