forked from ISTI-ansible-roles/ansible-roles
dataminer: Give the possibility to not install the algorithms updater cron job.
This commit is contained in:
parent
783afcbbf9
commit
c0864e4e43
|
@ -26,6 +26,7 @@ dataminer_algorithms_base_url: 'http://maven.research-infrastructures.eu/nexus/c
|
|||
# Algorithms updater
|
||||
dataminer_wps_algorithms_svn: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/DataMinerConfiguration/algorithms/
|
||||
dataminer_wps_algorithms_dest: '{{ smartgears_user_home }}/wps_algorithms/algorithms'
|
||||
dataminer_algorithms_updater_cron: present
|
||||
dataminer_algorithms_updater_minute_frequency: "0"
|
||||
dataminer_algorithms_updater_hour_frequency: "*"
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
tags: [ 'tomcat', 'dataminer', 'wps', 'dataminer_algorithms', 'dataminer_algorithms_script' ]
|
||||
|
||||
- name: Cron job that updates the algorithms repository and adds the missing algorithms configurations
|
||||
cron: name="SVN update the algorithms repository" minute="{{ dataminer_algorithms_updater_minute_frequency }}" hour="{{ dataminer_algorithms_updater_hour_frequency }}" job="/usr/local/bin/algorithms-updater > {{ smartgears_user_home }}/wps_algorithms_install_log/algorithms_updater_cron.log 2>&1" user='{{ smartgears_user }}' state=present
|
||||
cron: name="SVN update the algorithms repository" minute="{{ dataminer_algorithms_updater_minute_frequency }}" hour="{{ dataminer_algorithms_updater_hour_frequency }}" job="/usr/local/bin/algorithms-updater > {{ smartgears_user_home }}/wps_algorithms_install_log/algorithms_updater_cron.log 2>&1" user='{{ smartgears_user }}' state={{ dataminer_algorithms_updater_cron }}
|
||||
tags: [ 'tomcat', 'dataminer', 'wps', 'dataminer_algorithms', 'dataminer_algorithms_cron' ]
|
||||
|
||||
- name: Create a directory where to install the gebco_08.nc data file
|
||||
|
|
Loading…
Reference in New Issue