renew_consul_certificates/handlers/main.yml
Bertrand Lanson 84b11cb11e
All checks were successful
test / Linting (push) Successful in 11s
test / Molecule tests (default, debian11) (push) Successful in 1m9s
test / Molecule tests (default, debian12) (push) Successful in 1m12s
test / Molecule tests (default, ubuntu2204) (push) Successful in 1m19s
test / Molecule tests (default, ubuntu2004) (push) Successful in 1m42s
test / Molecule tests (with_custom_config, debian11) (push) Successful in 1m8s
test / Molecule tests (with_custom_config, debian12) (push) Successful in 1m16s
test / Molecule tests (with_custom_config, ubuntu2004) (push) Successful in 1m24s
test / Molecule tests (with_custom_config, ubuntu2204) (push) Successful in 1m31s
fix: revert forcing scope on deamon reload
> bug came from the runner and not the code
2023-12-02 10:51:50 +01:00

23 lines
561 B
YAML

---
# handlers file for renew_consul_certificates
- name: "Reload service file"
ansible.builtin.systemd:
daemon_reload: true
become: true
listen: "systemctl-daemon-reload"
- name: "Enable consul-certs service"
ansible.builtin.service:
name: consul-certs
enabled: true
become: true
listen: "systemctl-enable-consul-certs"
- name: "Start consul-certs service"
ansible.builtin.service:
name: consul-certs
state: restarted
become: true
listen: "systemctl-restart-consul-certs"
when: renew_consul_certificates_start_service