--- - block: - name: Create the orientdb user user: name={{ orientdb_user }} home={{ orientdb_home_prefix }}/{{ orientdb_user }} createhome=yes shell=/bin/bash - name: Unpack the orientdb distribution become: True become_user: '{{ orientdb_user }}' unarchive: src={{ orientdb_binary_distribution_url }} dest={{ orientdb_home_prefix }}/{{ orientdb_user }} copy=no args: creates: '{{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }}-{{ orientdb_version }}' - name: Link to the latest version become: True become_user: '{{ orientdb_user }}' file: src={{ orientdb_dir }}-{{ orientdb_version }} dest={{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }} state=link - 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 file: dest={{ orientdb_log_dir }} state=directory owner={{ orientdb_user }} group={{ orientdb_user }} mode=0755 - 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 become: True become_user: '{{ orientdb_user }}' file: dest={{ orientdb_data_dir }} state=directory mode=0750 - name: Install the orientdb configuration files template: src={{ item }}.j2 dest={{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }}/config/{{ item }} owner={{ orientdb_user }} group={{ orientdb_user }} mode=0440 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 tags: orientdb when: orientdb_install - 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 tags: orientdb when: not orientdb_install