home library: create a symbolic link to the jackrabbit repository if it is not in the correct place already.

This commit is contained in:
Andrea Dell'Amico 2017-09-29 18:17:03 +02:00
parent 945c5a61ca
commit 098fb97660
1 changed files with 8 additions and 0 deletions

View File

@ -29,6 +29,14 @@
become_user: root
file: dest={{ jackrabbit_data_dir }} state=directory owner={{ smartgears_user }} group={{ smartgears_user }}
- name: Verify if the JackRabbit persistence directory is in the place where the service expects it
stat: path={{ smartgears_instance_path }}/jackrabbit
register: jackrabbit_data_path
- name: Link the data dir to the place where jackrabbit expects it
file: src={{ jackrabbit_data_dir }} dest={{ smartgears_instance_path }}/jackrabbit state=link
when: not jackrabbit_data_path.exists
- name: Install the repository configuration files
template: src={{ item }}.j2 dest={{ jackrabbit_data_dir }}/{{ item }}
with_items: '{{ jackrabbit_config_files }}'