migrate netbox from rx300 to carlene

This commit is contained in:
Franzi 2023-08-02 08:07:36 +02:00
parent a16fcdd935
commit 88ccd3ca72
Signed by: kunsi
GPG key ID: 12E3D2136B818350
3 changed files with 12 additions and 6 deletions

View file

@ -73,13 +73,13 @@ actions = {
}
files = {
'/etc/systemd/system/netbox-web.service': {
'/usr/local/lib/systemd/system/netbox-web.service': {
'triggers': {
'action:systemd-reload',
'svc_systemd:netbox-web:restart',
},
},
'/etc/systemd/system/netbox-worker.service': {
'/usr/local/lib/systemd/system/netbox-worker.service': {
'triggers': {
'action:systemd-reload',
'svc_systemd:netbox-worker:restart',
@ -108,7 +108,7 @@ svc_systemd = {
'needs': {
'action:netbox_install',
'action:netbox_upgrade',
'file:/etc/systemd/system/netbox-web.service',
'file:/usr/local/lib/systemd/system/netbox-web.service',
'file:/opt/netbox/gunicorn_config.py',
'file:/opt/netbox/src/netbox/netbox/configuration.py',
},
@ -117,7 +117,7 @@ svc_systemd = {
'needs': {
'action:netbox_install',
'action:netbox_upgrade',
'file:/etc/systemd/system/netbox-worker.service',
'file:/usr/local/lib/systemd/system/netbox-worker.service',
'file:/opt/netbox/src/netbox/netbox/configuration.py',
},
},