You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
251 B
14 lines
251 B
2 years ago
|
#!/sbin/openrc-run
|
||
|
|
||
|
name="$SVCNAME"
|
||
|
directory="{{ wiki_dir }}"
|
||
|
command="node {{ wiki_dir }}/server"
|
||
|
command_user="{{ wiki_user }}:{{ wiki_group }}"
|
||
|
pidfile="/var/run/$SVCNAME.pid"
|
||
|
command_background=true
|
||
|
|
||
|
depend() {
|
||
|
need net
|
||
|
use dns
|
||
|
}
|