mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 05:08:13 -05:00
0373d03fb2
* fix installer bugs && improve * Update install_en.sh
19 lines
376 B
Plaintext
Executable File
19 lines
376 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
supervisor=supervise-daemon
|
|
name=nezha-dashboard
|
|
output_log=/var/log/${name}.log
|
|
error_log=/var/log/${name}.err
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
command="/opt/nezha/dashboard/app"
|
|
command_args=""
|
|
command_background=true
|
|
directory="/opt/nezha/dashboard"
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath -f -m 0644 -o root:root "/var/log/${name}.log"
|
|
}
|