17 lines
471 B
Django/Jinja
17 lines
471 B
Django/Jinja
{%- from "netbox/map.jinja" import netbox with context -%}
|
|
## {{ salt['pillar.get']('salt_managed', default='Salt Managed') }}
|
|
[Unit]
|
|
Description=Netbox
|
|
After=network.target postgresql.service redis.service
|
|
|
|
[Service]
|
|
Type=notify
|
|
NotifyAccess=all
|
|
LimitNOFILE=8192
|
|
ExecStart={{ netbox.install_dir }}/netbox/.venv/bin/gunicorn -c {{ netbox.install_dir }}/netbox/gunicorn.py netbox.wsgi
|
|
KillMode=process
|
|
Restart=on-failure
|
|
RestartSec=15
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |