diff options
-rwxr-xr-x | support/freebsd/peertube | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/support/freebsd/peertube b/support/freebsd/peertube new file mode 100755 index 000000000..78fdf5848 --- /dev/null +++ b/support/freebsd/peertube | |||
@@ -0,0 +1,29 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | # PROVIDE: peertube | ||
4 | # REQUIRE: LOGIN postgresql nginx redis | ||
5 | # KEYWORD: shutdown | ||
6 | |||
7 | PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin" | ||
8 | |||
9 | . /etc/rc.subr | ||
10 | |||
11 | desc="Peertube daemon" | ||
12 | name=peertube | ||
13 | rcvar=peertube_enable | ||
14 | |||
15 | load_rc_config $name | ||
16 | |||
17 | : ${peertube_enable:=NO} | ||
18 | |||
19 | peertube_chdir="/var/www/peertube/peertube-latest" | ||
20 | peertube_env="HOME=/var/www/peertube \ | ||
21 | NODE_ENV=production \ | ||
22 | NODE_CONFIG_DIR=/var/www/peertube/config \ | ||
23 | USER=peertube" | ||
24 | peertube_user=peertube | ||
25 | |||
26 | command="/usr/local/bin/npm" | ||
27 | command_args="start >> /var/log/peertube/${name}.log 2>&1 &" | ||
28 | |||
29 | run_rc_command "$1" | ||