ansible-role-sso/handlers/main.yml

68 lines
1.4 KiB
YAML
Raw Normal View History

2022-07-19 14:26:08 +02:00
---
- name: Restart HAProxy
service:
name: haproxy
state: restarted
become: true
2023-10-25 11:38:08 +02:00
when: not install_only
2022-07-19 14:26:08 +02:00
- name: Restart cadoles-pod-hydra-v1
service:
name: cadoles-pod-hydra-v1
state: restarted
become: true
2023-10-25 11:38:08 +02:00
when: not install_only
2022-07-19 14:26:08 +02:00
- name: Restart cadoles-pod-hydra-dispatcher-v1
service:
name: cadoles-pod-hydra-dispatcher-v1
state: restarted
become: true
2023-10-25 11:38:08 +02:00
when: not install_only
2022-07-19 14:26:08 +02:00
- name: Restart cadoles-pod-hydra-passwordless-v1
service:
name: cadoles-pod-hydra-passwordless-v1
state: restarted
become: true
2023-10-25 11:38:08 +02:00
when: not install_only
2022-07-19 14:26:08 +02:00
- name: Restart cadoles-pod-hydra-remote-user-v1
service:
name: cadoles-pod-hydra-remote-user-v1
state: restarted
become: true
2023-10-25 11:38:08 +02:00
when: not install_only
2022-07-19 14:26:08 +02:00
- name: Restart cadoles-pod-shibboleth-sp-v3
service:
name: cadoles-pod-shibboleth-sp-v3
state: restarted
become: true
2023-10-25 11:38:08 +02:00
when: not install_only
2022-08-10 17:46:19 +02:00
- name: Restart cadoles-pod-hydra-oidc-v1
service:
name: cadoles-pod-hydra-oidc-v1
state: restarted
become: true
2022-08-25 20:32:15 +02:00
- name: Restart cadoles-pod-hydra-ldap-v1
service:
name: cadoles-pod-hydra-ldap-v1
state: restarted
become: true
2023-10-25 11:38:08 +02:00
when: not install_only
2022-08-25 20:32:15 +02:00
2023-04-05 14:57:15 +02:00
- name: Restart cadoles-pod-goweb-oidc-v1
service:
name: cadoles-pod-goweb-oidc-v1
state: restarted
become: true
2023-10-25 11:38:08 +02:00
when: not install_only
2023-04-05 14:57:15 +02:00
- name: Reload hydra clients
ansible.builtin.include_tasks:
2023-04-05 14:57:15 +02:00
file: hydra-reload-clients.yml
2023-10-25 11:38:08 +02:00
when: not install_only