__netbox: consistency with __systemd_unit --restart
This commit brings consistency into the --restart parameter for systemd units. All units except the netbox wrapper service will be restarted on unit change.
This commit is contained in:
parent
dd167f075d
commit
e800f42a6d
1 changed files with 7 additions and 5 deletions
|
@ -213,8 +213,10 @@ SECRET
|
||||||
|
|
||||||
|
|
||||||
# Upload systemd unit for worker and wsgi service
|
# Upload systemd unit for worker and wsgi service
|
||||||
for unit in netbox netbox-rq; do
|
# does not restart netbox on change cause it only restart all other services
|
||||||
__systemd_unit $unit.service \
|
__systemd_unit netbox.service \
|
||||||
--source "$__type/files/$unit.service" \
|
--source "$__type/files/netbox.service" \
|
||||||
--enablement-state enabled
|
--enablement-state enabled
|
||||||
done
|
__systemd_unit netbox-rq.service \
|
||||||
|
--source "$__type/files/netbox-rq.service" \
|
||||||
|
--enablement-state enabled --restart
|
||||||
|
|
Loading…
Reference in a new issue