FreeBSD System V startup scripts.
This commit is contained in:
parent
6ed5740f6f
commit
f9778458a2
|
@ -0,0 +1,21 @@
|
||||||
|
### System V rc script for FreeBSD
|
||||||
|
|
||||||
|
Copy the file in `/usr/local/etc/rc.d`
|
||||||
|
|
||||||
|
```
|
||||||
|
# cp /path/to/funkwhale/deploy/FreeBSD/funkwhale_* /usr/local/etc/rc.d
|
||||||
|
```
|
||||||
|
|
||||||
|
If not add executable bit to the files.
|
||||||
|
|
||||||
|
```
|
||||||
|
# chmod +x /usr/local/etc/rc.d/funkwhale_*
|
||||||
|
```
|
||||||
|
|
||||||
|
Enable services in rc.conf
|
||||||
|
|
||||||
|
```
|
||||||
|
# sysrc funkwhale_server=YES
|
||||||
|
# sysrc funkwhale_worker=YES
|
||||||
|
# sysrc funkwhale_beat=YES
|
||||||
|
```
|
|
@ -0,0 +1,35 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# PROVIDE: funkwhale_beat
|
||||||
|
# REQUIRE: LOGIN postgresql nginx redis
|
||||||
|
# KEYWORD: shutdown
|
||||||
|
#
|
||||||
|
# Add the following lines to /etc/rc.conf to enable funkwhale_beat:
|
||||||
|
# funkwhale_beat (bool): Set it to "YES" to enable Funkwhale task beat.
|
||||||
|
# Default is "NO".
|
||||||
|
|
||||||
|
|
||||||
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin
|
||||||
|
|
||||||
|
. /etc/rc.subr
|
||||||
|
|
||||||
|
desc="Funkwhale beat"
|
||||||
|
name=funkwhale_beat
|
||||||
|
rcvar=funkwhale_beat_enable
|
||||||
|
|
||||||
|
load_rc_config $name
|
||||||
|
|
||||||
|
: ${funkwhale_beat_enable:=NO}
|
||||||
|
|
||||||
|
funkwhale_beat_chdir="/usr/local/www/funkwhale/api"
|
||||||
|
funkwhale_beat_user=funkwhale
|
||||||
|
funkwhale_beat_env=$(cat /usr/local/www/funkwhale/config/.env | grep -v ^# | xargs)
|
||||||
|
pidfile="/var/run/funkwhale/${name##funkwhale_}.pid"
|
||||||
|
command_interpreter="/usr/local/www/funkwhale/virtualenv/bin/python3"
|
||||||
|
|
||||||
|
command="/usr/local/www/funkwhale/virtualenv/bin/celery"
|
||||||
|
command_args="-A funkwhale_api.taskapp beat -l INFO \
|
||||||
|
--pidfile=${pidfile} \
|
||||||
|
>> /var/log/funkwhale/${name##funkwhale_}.log 2>&1 &"
|
||||||
|
|
||||||
|
run_rc_command "$1"
|
|
@ -0,0 +1,32 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# PROVIDE: funkwhale_server
|
||||||
|
# REQUIRE: LOGIN postgresql nginx redis
|
||||||
|
# KEYWORD: shutdown
|
||||||
|
#
|
||||||
|
# Add the following lines to /etc/rc.conf to enable funkwhale_server:
|
||||||
|
# funkwhale_server (bool): Set it to "YES" to enable Funkwhale web server.
|
||||||
|
# Default is "NO".
|
||||||
|
|
||||||
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin
|
||||||
|
|
||||||
|
. /etc/rc.subr
|
||||||
|
|
||||||
|
desc="Funkwhale server"
|
||||||
|
name=funkwhale_server
|
||||||
|
rcvar=funkwhale_server_enable
|
||||||
|
|
||||||
|
load_rc_config $name
|
||||||
|
|
||||||
|
: ${funkwhale_server_enable:=NO}
|
||||||
|
|
||||||
|
funkwhale_server_chdir="/usr/local/www/funkwhale/api"
|
||||||
|
funkwhale_server_user=funkwhale
|
||||||
|
funkwhale_server_env=$(cat /usr/local/www/funkwhale/config/.env | grep -v ^# | xargs)
|
||||||
|
command_interpreter="/usr/local/www/funkwhale/virtualenv/bin/python3"
|
||||||
|
|
||||||
|
command="/usr/local/www/funkwhale/virtualenv/bin/daphne"
|
||||||
|
command_args="-b 127.0.0.1 -p 5000 config.asgi:application --proxy-headers \
|
||||||
|
>> /var/log/funkwhale/${name##funkwhale_}.log 2>&1 &"
|
||||||
|
|
||||||
|
run_rc_command "$1"
|
|
@ -0,0 +1,34 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# PROVIDE: funkwhale_worker
|
||||||
|
# REQUIRE: LOGIN postgresql nginx redis
|
||||||
|
# KEYWORD: shutdown
|
||||||
|
#
|
||||||
|
# Add the following lines to /etc/rc.conf to enable funkwhale_worker:
|
||||||
|
# funkwhale_worker (bool): Set it to "YES" to enable Funkwhale task worker.
|
||||||
|
# Default is "NO".
|
||||||
|
|
||||||
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin
|
||||||
|
|
||||||
|
. /etc/rc.subr
|
||||||
|
|
||||||
|
desc="Funkwhale worker"
|
||||||
|
name=funkwhale_worker
|
||||||
|
rcvar=funkwhale_worker_enable
|
||||||
|
|
||||||
|
load_rc_config $name
|
||||||
|
|
||||||
|
: ${funkwhale_worker_enable:=NO}
|
||||||
|
|
||||||
|
funkwhale_worker_chdir="/usr/local/www/funkwhale/api"
|
||||||
|
funkwhale_worker_user=funkwhale
|
||||||
|
funkwhale_worker_env=$(cat /usr/local/www/funkwhale/config/.env | grep -v ^# | xargs)
|
||||||
|
pidfile="/var/run/funkwhale/${name##funkwhale_}.pid"
|
||||||
|
command_interpreter="/usr/local/www/funkwhale/virtualenv/bin/python3"
|
||||||
|
|
||||||
|
command="/usr/local/www/funkwhale/virtualenv/bin/celery"
|
||||||
|
command_args="-A funkwhale_api.taskapp worker -l INFO \
|
||||||
|
--pidfile=${pidfile} \
|
||||||
|
>> /var/log/funkwhale/${name##funkwhale_}.log 2>&1 &"
|
||||||
|
|
||||||
|
run_rc_command "$1"
|
Loading…
Reference in New Issue