ansible-roles/smartgears/smartgears/tasks/install-gcube-keys.yml

47 lines
1.9 KiB
YAML

---
- block:
- name: Install the production gcube keys
get_url: url={{ item.url }} dest={{ gcube_tomcat_lib_dir }}/{{ item.name }} owner={{ smartgears_user }} group={{ d4science_user }} mode=0600
with_items: '{{ gcube_production_security_keys }}'
notify: Restart smartgears
when: install_gcube_prod_key
- name: Remove the production gcube keys
file: dest={{ gcube_tomcat_lib_dir }}/{{ item.name }} state=absent
with_items: '{{ gcube_production_security_keys }}'
notify: Restart smartgears
when: not install_gcube_prod_key
- name: Install the devel gcube keys
get_url: url={{ item.url }} dest={{ gcube_tomcat_lib_dir }}/{{ item.name }} owner={{ smartgears_user }} group={{ d4science_user }} mode=0600
with_items: '{{ gcube_dev_security_keys }}'
notify: Restart smartgears
when: install_gcube_dev_key
- name: Remove the devel gcube keys
file: dest={{ gcube_tomcat_lib_dir }}/{{ item.name }} state=absent
with_items: '{{ gcube_dev_security_keys }}'
notify: Restart smartgears
when: not install_gcube_dev_key
- name: Install the preprod gcube keys
get_url: url={{ item.url }} dest={{ gcube_tomcat_lib_dir }}/{{ item.name }} owner={{ smartgears_user }} group={{ smartgears_user }} mode=0600
with_items: '{{ gcube_preprod_security_keys }}'
notify: Restart smartgears
when: install_gcube_preprod_key
- name: Remove the preprod gcube keys
file: dest={{ gcube_tomcat_lib_dir }}/{{ item.name }} state=absent
with_items: '{{ gcube_preprod_security_keys }}'
notify: Restart smartgears
when: not install_gcube_preprod_key
- name: Remove the obsolete or expired gcube keys
file: dest={{ gcube_tomcat_lib_dir }}/{{ item.name }} state=absent
with_items: '{{ gcube_old_security_keys }}'
notify: Restart smartgears
#become: True
#become_user: '{{ smartgears_user }}'
tags: gcube_key