Ansible roles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.5 KiB

---
- import_tasks: ../includes/webapps_webconf.yml
vars:
- app_id: bookstack_{{ bookstack_id }}
- php_version: "{{ bookstack_php_version }}"
- php_fpm_pool: "{{ bookstack_php_fpm_pool | default('') }}"
tags: bookstack
- when: bookstack_app_key is not defined
block:
- name: Generate a uniq application key
shell: /bin/php{{ bookstack_php_version }} {{ bookstack_root_dir }}/app/artisan key:generate --show > {{ bookstack_root_dir }}/meta/ansible_app_key
args:
creates: "{{ bookstack_root_dir }}/meta/ansible_app_key"
- name: Read application key
slurp: src={{ bookstack_root_dir }}/meta/ansible_app_key
register: bookstack_rand_app_key
- set_fact: bookstack_app_key={{ bookstack_rand_app_key.content | b64decode | trim }}
tags: bookstack
- name: Deploy BookStack configuration
template: src=env.j2 dest={{ bookstack_root_dir }}/app/.env group={{ bookstack_php_user }} mode=640
tags: bookstack
- name: Migrate the database
shell: echo yes | /bin/php{{ bookstack_php_version }} artisan migrate
args:
chdir: "{{ bookstack_root_dir }}/app"
become_user: "{{ bookstack_php_user }}"
when: bookstack_install_mode != 'none'
tags: bookstack
- name: Deploy permission script
template: src=perms.sh.j2 dest={{ bookstack_root_dir }}/perms.sh mode=755
register: bookstack_perm_script
tags: bookstack
- name: Apply permissions
command: "{{ bookstack_root_dir }}/perms.sh"
when: bookstack_perm_script.changed or bookstack_install_mode != 'none'
tags: bookstack