13 lines
362 B
YAML
13 lines
362 B
YAML
---
|
|
- name: "[pma] - get archive"
|
|
unarchive:
|
|
remote_src: yes
|
|
src: https://files.phpmyadmin.net/phpMyAdmin/{{ pma_version }}/phpMyAdmin-{{ pma_version }}-all-languages.zip
|
|
dest: "{{ pma_install_dir }}"
|
|
|
|
- name: "[pma] - apache config"
|
|
template:
|
|
src: apache_pma.conf
|
|
dest: "{{ apache_config_dir }}/phpmyadmin.conf"
|
|
notify: restart apache
|