mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add an openrc unit file
This commit is contained in:
parent
86a23f9b14
commit
2b5433dc6e
1 changed files with 21 additions and 0 deletions
21
contrib/navidrome
Normal file
21
contrib/navidrome
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
#!/sbin/openrc-run
|
||||||
|
|
||||||
|
name=$RC_SVCNAME
|
||||||
|
command="/opt/navidrome/navidrome"
|
||||||
|
command_args="-datafolder=/opt/navidrome"
|
||||||
|
command_user="navidrome"
|
||||||
|
pidfile="/var/run/$RC_SVCNAME.pid"
|
||||||
|
command_background="yes"
|
||||||
|
|
||||||
|
depend() {
|
||||||
|
need net
|
||||||
|
}
|
||||||
|
|
||||||
|
start_pre() {
|
||||||
|
checkpath --directory --owner $command_user:$command_user --mode 0775 \
|
||||||
|
/run/$RC_SVCNAME /var/log/$RC_SVCNAME
|
||||||
|
}
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
kill `cat /var/run/$RC_SVCNAME.pid`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue