Compare commits

..

2 Commits

Author SHA1 Message Date
Laurent Gourvenec c9b6f359be Allow roll-back for hydra-dispatcher 2024-07-24 16:20:57 +02:00
Laurent Gourvenec f1f7570864 WIP: Hotfix liés à MSE2 2024-07-24 16:20:54 +02:00
5 changed files with 27 additions and 7 deletions

View File

@ -21,9 +21,6 @@
- src: hydra-remote-user.yml.j2
dest: /etc/hydra-remote-user/conf.d/remote-user.yml
mode: u=rw,g=r,o=r
- src: mpm_prefork.conf.j2
dest: /etc/hydra-remote-user/mpm_prefork.conf
mode: u=rw,g=r,o=r
notify:
- Restart cadoles-pod-hydra-remote-user-v1
become: true
@ -37,7 +34,6 @@
dest: /etc/hydra-remote-user/apache.conf
- src: mpm_prefork.conf
dest: /etc/hydra-remote-user/mpm_prefork.conf
mode: u=rw,g=r,o=r
notify:
- Restart cadoles-pod-hydra-remote-user-v1
become: true

View File

@ -81,9 +81,17 @@
- src: hydra-dispatcher-apps.yml.j2
dest: /etc/hydra-dispatcher/conf.d/apps.yml
mode: u=rw,g=r,o=r
notify:
- Restart cadoles-pod-hydra-dispatcher-v1
become: true
- name: Configure cadoles-pod-hydra-dispatcher-v1 (2)
ansible.builtin.copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
with_items:
- src: www.conf.gotmpl
dest: /etc/hydra-dispatcher/www.conf.gotmpl
mode: u=rw,g=r,o=r
notify:
- Restart cadoles-pod-hydra-dispatcher-v1
become: true

View File

@ -24,3 +24,14 @@
notify:
- Restart cadoles-pod-hydra-dispatcher-v1
become: true
- name: Configure cadoles-pod-hydra-dispatcher-v1 (2)
ansible.builtin.copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
with_items:
- src: www.conf.gotmpl
dest: /etc/hydra-dispatcher/www.conf.gotmpl
notify:
- Restart cadoles-pod-hydra-dispatcher-v1
become: true

View File

@ -26,8 +26,13 @@
- name: Configure cadoles-pod-hydra-remote-user-v1 (2)
ansible.builtin.copy:
src: hydra-remote-user-v1-apache.conf
dest: /etc/hydra-remote-user/apache.conf
src: "{{ item.src }}"
dest: "{{ item.dest }}"
with_items:
- src: hydra-remote-user-v1-apache.conf
dest: /etc/hydra-remote-user/apache.conf
- src: mpm_prefork.conf
dest: /etc/hydra-remote-user/mpm_prefork.conf
notify:
- Restart cadoles-pod-hydra-remote-user-v1
become: true