2016-09-23 19:07:39 +02:00
|
|
|
---
|
|
|
|
- block:
|
|
|
|
- name: Create the orientdb user
|
2016-09-29 12:48:17 +02:00
|
|
|
user: name={{ orientdb_user }} home={{ orientdb_base_dir }} createhome=yes shell=/bin/bash
|
2016-09-23 19:07:39 +02:00
|
|
|
|
|
|
|
- name: Unpack the orientdb distribution
|
2016-09-29 12:48:17 +02:00
|
|
|
unarchive: src={{ orientdb_binary_distribution_url }} dest={{ orientdb_base_dir }} copy=no
|
2016-09-23 19:07:39 +02:00
|
|
|
args:
|
|
|
|
creates: '{{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }}-{{ orientdb_version }}'
|
|
|
|
|
|
|
|
- name: Link to the latest version
|
|
|
|
become: True
|
|
|
|
become_user: '{{ orientdb_user }}'
|
2016-09-29 12:48:17 +02:00
|
|
|
file: src={{ orientdb_dir }}-{{ orientdb_version }} dest={{ orientdb_install_dir }} state=link
|
2016-09-23 19:07:39 +02:00
|
|
|
|
2016-09-27 15:30:41 +02:00
|
|
|
- name: Install the orientdb startup script
|
|
|
|
template: src=orientdb.init.j2 dest=/etc/init.d/orientdb owner=root group=root mode=0755
|
|
|
|
|
|
|
|
- name: Create a orientdb log directory out of the distribution directory
|
2016-09-28 19:19:03 +02:00
|
|
|
file: dest={{ orientdb_log_dir }} state=directory owner={{ orientdb_user }} group={{ orientdb_user }} mode=0755
|
2016-09-27 15:30:41 +02:00
|
|
|
|
2016-09-28 19:19:03 +02:00
|
|
|
- name: Link the log directory inside the orientdb user home
|
|
|
|
become: True
|
|
|
|
become_user: '{{ orientdb_user }}'
|
|
|
|
file: dest={{ orientdb_home_prefix }}/{{ orientdb_user }}/logs src={{ orientdb_log_dir }} state=link
|
|
|
|
|
|
|
|
- name: Create the databases directory inside the orientdb user home
|
2016-09-27 15:30:41 +02:00
|
|
|
become: True
|
|
|
|
become_user: '{{ orientdb_user }}'
|
2016-10-26 16:23:29 +02:00
|
|
|
file: dest={{ item }} state=directory mode=0750
|
|
|
|
with_items:
|
|
|
|
- '{{ orientdb_data_dir }}'
|
|
|
|
- '{{ orientdb_pid_dir }}'
|
2016-09-28 19:19:03 +02:00
|
|
|
|
2016-09-29 12:48:17 +02:00
|
|
|
- name: Fetch and install the hook jars
|
|
|
|
get_url: url='{{ item }}' dest={{ orientdb_install_dir }}/lib
|
|
|
|
with_items: '{{ orientdb_hooks_jars | default ([]) }}'
|
|
|
|
notify: Restart orientdb
|
|
|
|
|
2016-09-29 15:40:37 +02:00
|
|
|
- name: Install the orientdb default settings
|
|
|
|
template: src=orientdb.default.j2 dest=/etc/default/orientdb owner=root group=root mode=0444
|
|
|
|
notify: Restart orientdb
|
|
|
|
|
2016-10-26 16:23:29 +02:00
|
|
|
- name: Fix the pid file path inside the start/stop scripts
|
|
|
|
lineinfile: dest={{ orientdb_install_dir }}/bin/{{ item }} regexp="^ORIENTDB_PID=.*$" line="ORIENTDB_PID={{ orientdb_pid_dir }}/orientdb.pid"
|
|
|
|
with_items:
|
|
|
|
- server.sh
|
|
|
|
- shutdown.sh
|
|
|
|
|
2016-09-28 19:19:03 +02:00
|
|
|
- name: Install the orientdb configuration files
|
2016-10-26 16:23:29 +02:00
|
|
|
template: src={{ item }}.j2 dest={{ orientdb_install_dir }}/config/{{ item }} owner={{ orientdb_user }} group={{ orientdb_user }} mode=0640
|
2016-09-28 19:19:03 +02:00
|
|
|
with_items: '{{ orientdb_configuration_files }}'
|
|
|
|
notify: Restart orientdb
|
|
|
|
|
|
|
|
- name: Ensure that the service is enabled and running
|
|
|
|
service: name=orientdb state=started enabled=yes
|
|
|
|
when: orientdb_enabled
|
2016-09-27 15:30:41 +02:00
|
|
|
|
2016-09-23 19:07:39 +02:00
|
|
|
tags: orientdb
|
|
|
|
when: orientdb_install
|
2016-09-28 19:19:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
- block:
|
|
|
|
- name: Ensure that the service is disabled and stopped
|
|
|
|
service: name=orientdb state=stopped enabled=no
|
|
|
|
|
|
|
|
- name: Remove the link to the orientdb distribution
|
|
|
|
file: dest={{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }} state=absent
|
|
|
|
|
2016-09-29 15:40:37 +02:00
|
|
|
- name: Remove the default options file
|
|
|
|
file: dest=/etc/default/orientdb state=absent
|
|
|
|
|
2016-09-28 19:19:03 +02:00
|
|
|
tags: orientdb
|
|
|
|
when: not orientdb_install
|
|
|
|
|