mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
18 lines
339 B
SYSTEMD
18 lines
339 B
SYSTEMD
|
[Unit]
|
||
|
Description=NetBox Housekeeping Service
|
||
|
Documentation=https://docs.netbox.dev/
|
||
|
After=network-online.target
|
||
|
Wants=network-online.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
|
||
|
User=netbox
|
||
|
Group=netbox
|
||
|
WorkingDirectory=/opt/netbox
|
||
|
|
||
|
ExecStart=/opt/netbox/venv/bin/python /opt/netbox/netbox/manage.py housekeeping
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|