fast fix 'cause of no ssl + pma installation

This commit is contained in:
lulzette
2021-02-26 18:42:30 +03:00
parent 60e58207b8
commit ca222e999d
7 changed files with 62 additions and 44 deletions

View File

@@ -0,0 +1,18 @@
---
- name: install unzip
apt:
name: unzip
state: latest
- name: Download and unpack phpmyadmin
ansible.builtin.unarchive:
src: https://files.phpmyadmin.net/phpMyAdmin/5.1.0/phpMyAdmin-5.1.0-all-languages.zip
dest: /var/www/pma
remote_src: yes
owner: www-data
- name: move pma to pma dir
copy:
src: /var/www/pma/phpMyAdmin-5.1.0-all-languages/
dest: /var/www/pma/
remote_src: True