dataminer-pool-manager/src/main/resources/static/gcube-algorithm-installer/tasks/main.yaml

31 lines
922 B
YAML

---
- name: remove previous installer (if any)
file:
path: /home/dpm/algorithmInstaller
state: absent
#- name: remove previous installer.zip (if any)
# file:
# path: /home/dpm/algorithmInstaller.zip
# state: absent
#- name: download the installer zip
# get_url:
# url: https:***REMOVED***svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/DataminerAlgorithmsInstaller/package/algorithmInstaller.zip
# dest: /home/dpm/algorithmInstaller.zip
# validate_certs: no
- name: download and unzip the package
unarchive:
src: https:***REMOVED***svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/DataminerAlgorithmsInstaller/package/algorithmInstaller.zip
dest: /home/dpm
remote_src: yes
validate_certs: no
- name: change flags
file:
path: /home/dpm/algorithmInstaller
mode: 0777
state: directory
recurse: yes