servers/roles/netbox/templates/netbox.initd.j2
Timotej Lazar c7a3513fa1 Add netbox role
Kinda ouroborosish if you think about it. Better don’t.
2024-05-28 12:32:28 +02:00

11 lines
317 B
Django/Jinja

#!/sbin/openrc-run
description="NetBox WSGI service"
command="{{ user_info.home }}/app/venv/bin/gunicorn"
command_args="--pythonpath {{ user_info.home }}/app/netbox --config {{ user_info.home }}/gunicorn.py netbox.wsgi"
command_user="{{ user }}:{{ user }}"
command_background=true
pidfile="/run/${RC_SVCNAME}.pid"