mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-23 05:33:25 +02:00
17 lines
468 B
YAML
17 lines
468 B
YAML
---
|
|
|
|
- name: restart nomad
|
|
service: name=nomad state=restarted
|
|
when: nomad_service_started is not defined or not nomad_service_started.changed
|
|
throttle: 1
|
|
|
|
- name: reload nomad
|
|
service: name=nomad state=reloaded
|
|
when: nomad_service_started is not defined or not nomad_service_started.changed
|
|
|
|
- name: restart nomad-vault-agent
|
|
service: name=nomad-vault-agent state=restarted
|
|
|
|
- name: reload nomad-jwks-proxy
|
|
service: name=nomad-jwks-proxy state=reloaded
|