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.
container-overlay/profiles/templates/taiga/taiga/init.taiga

27 lines
878 B

# Calculate path=/etc/init.d name=#-cut(1,.)-# chmod=755 comment=# exists(/var/calculate/www/taiga/.node-live)!=
#!/sbin/openrc-run
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
name="Taiga daemon"
description=""
pidfile=/run/taiga-back.pid
command_user=taiga
output_log=/var/log/taiga-back.log
error_log=/var/log/taiga-back.log
directory=/var/calculate/www/taiga/taiga-back
start_stop_daemon_args=""
command="/var/calculate/www/taiga/taiga-back/.venv/bin/gunicorn"
command_args="--workers 4 --timeout 60 --log-level=info --access-logfile - --bind 0.0.0.0:8001 taiga.wsgi"
source /var/calculate/www/taiga/taiga-back/.venv/bin/activate
command_background=true
depend() {
need nginx postgresql
need taiga-async taiga-events taiga-protected
}
start_pre() {
checkpath -f -o taiga -m 0600 /var/log/taiga-back.log
}