(fix) FreeBSD startup script (#1484)

This PR fixes #1477 introduced by #1474
pull/1488/head
Gérald Niel 2018-12-13 20:53:36 +01:00 committed by Rigel Kent
parent 34515397d0
commit 7f3d712d5e
1 changed files with 3 additions and 4 deletions

View File

@ -16,16 +16,15 @@ load_rc_config $name
: ${peertube_enable:=NO}
sig_stop=HUP
sig_stop=-KILL
peertube_chdir="/var/www/peertube/peertube-latest"
peertube_env="HOME=/var/www/peertube \
NODE_ENV=production \
NODE_CONFIG_DIR=/var/www/peertube/config \
USER=peertube"
peertube_user=peertube
procname="node:"
command="/usr/local/bin/npm"
command_args="start >> /var/log/peertube/${name}.log 2>&1 &"
command="/usr/local/bin/node"
command_args="dist/server >> /var/log/peertube/${name}.log 2>&1 &"
run_rc_command "$1"