2025-09-22 19:56:43 +00:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
|
|
|
|
|
command="/usr/local/x-ui/x-ui"
|
|
|
|
|
command_background=true
|
|
|
|
|
pidfile="/run/x-ui.pid"
|
|
|
|
|
description="x-ui Service"
|
|
|
|
|
procname="x-ui"
|
|
|
|
|
depend() {
|
|
|
|
|
need net
|
|
|
|
|
}
|
|
|
|
|
start_pre(){
|
|
|
|
|
cd /usr/local/x-ui
|
2026-02-20 00:03:16 +01:00
|
|
|
}
|
|
|
|
|
reload() {
|
|
|
|
|
ebegin "Reloading ${RC_SVCNAME}"
|
2026-05-11 09:05:36 +02:00
|
|
|
kill -USR1 $(cat $pidfile)
|
2026-02-20 00:03:16 +01:00
|
|
|
eend $?
|
2025-09-22 19:56:43 +00:00
|
|
|
}
|