forked from ISTI-ansible-roles/ansible-roles
orientdb: Change the archive format, see https://support.d4science.org/issues/12018
This commit is contained in:
parent
52144c88fd
commit
6bb79bd693
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue