Compare commits
2 Commits
7838ee15b3
...
c9b6f359be
Author | SHA1 | Date |
---|---|---|
Laurent Gourvenec | c9b6f359be | |
Laurent Gourvenec | f1f7570864 |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue