mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 18:23:40 +02:00
38 lines
1.3 KiB
YAML
38 lines
1.3 KiB
YAML
---
|
|
|
|
# Load distribution specific variables
|
|
- include_vars: "{{ item }}"
|
|
with_first_found:
|
|
- vars/{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml
|
|
- vars/{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml
|
|
- vars/{{ ansible_distribution }}.yml
|
|
- vars/{{ ansible_os_family }}.yml
|
|
tags: pma
|
|
|
|
# Detect current version (if any) and set install_mode (to none, upgrade or install)
|
|
- block:
|
|
- import_tasks: ../includes/webapps_set_install_mode.yml
|
|
vars:
|
|
- root_dir: "{{ pma_root_dir }}"
|
|
- version: "{{ pma_version }}"
|
|
- set_fact: pma_install_mode={{ (install_mode == 'upgrade' and not pma_manage_upgrade) | ternary('none',install_mode) }}
|
|
- set_fact: pma_current_version={{ current_version | default('') }}
|
|
tags: pma
|
|
|
|
# Generate a random key for cookie signing
|
|
- block:
|
|
- import_tasks: ../includes/get_rand_pass.yml
|
|
vars:
|
|
- pass_file: "{{ pma_root_dir }}/meta/key.txt"
|
|
- set_fact: pma_key={{ rand_pass }}
|
|
tags: pma
|
|
|
|
# Generate a DB password if not defined
|
|
- when: pma_db_pass is not defined
|
|
block:
|
|
- import_tasks: ../includes/get_rand_pass.yml
|
|
vars:
|
|
- pass_file: "{{pma_root_dir }}/meta/ansible_dbpass"
|
|
- set_fact: pma_db_pass={{ rand_pass }}
|
|
tags: pma
|