orientdb: Change the archive format, see https://support.d4science.org/issues/12018

This commit is contained in:
Andrea Dell'Amico 2018-06-25 16:13:55 +02:00
parent 52144c88fd
commit 6bb79bd693
2 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,11 @@
---
orientdb_install: False
orientdb_enabled: True
orientdb_version: 2.2.32
orientdb_version: 2.2.30
orientdb_archive_commpression: zip
orientdb_dir: 'orientdb-community'
orientdb_tar_file: '{{ orientdb_dir }}-{{ orientdb_version }}.tar.gz'
#orientdb_binary_distribution_url: 'http://orientdb.com/download.php?file={{ orientdb_tar_file }}'
orientdb_binary_distribution_url: 'https://bit.ly/orientdb-ce-{{ orientdb_version }}'
orientdb_tar_file: '{{ orientdb_dir }}-{{ orientdb_version }}.{{ orientdb_archive_commpression }}'
orientdb_binary_distribution_url: 'https://orientdb.com/download.php?file={{ orientdb_tar_file }}'
orientdb_user: orientdb
orientdb_log_dir: /var/log/orientdb
orientdb_log_level: INFO

View File

@ -4,7 +4,7 @@
user: name={{ orientdb_user }} home={{ orientdb_base_dir }} createhome=yes shell=/bin/bash
- name: Get the orientdb distribution
get_url: url={{ orientdb_binary_distribution_url }} dest={{ orientdb_base_dir }}/{{ orientdb_tar_file }}
get_url: url={{ orientdb_binary_distribution_url }} dest={{ orientdb_base_dir }}/{{ orientdb_tar_file }} validate_certs=no
- name: Unpack the orientdb distribution
unarchive: src={{ orientdb_base_dir }}/{{ orientdb_tar_file }} dest={{ orientdb_base_dir }} copy=no