blob: 569ddd21eaf82df21d9aa7c86354e19dd349eff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
- name: installation epel-release
package:
name: epel-release
state: present
- name: installation phpmyadmin
package:
name: phpmyadmin
state: present
- name: phpmyadmin.conf
replace:
path: /etc/httpd/conf.d/phpMyAdmin.conf
regexp: "Require local"
replace: "Require all granted"
after: "<Directory /usr/share/phpMyAdmin/>"
before: "</Directory>"
notify: restarting_apache
- name: database
shell: mysql < /usr/share/phpMyAdmin/sql/create_tables.sql
|