mirror of
https://github.com/Aviortheking/Blog_IMIE.git
synced 2025-04-23 11:22:12 +00:00
20 lines
383 B
YAML
20 lines
383 B
YAML
---
|
|
- hosts: hifive
|
|
become: yes
|
|
become_user: root
|
|
|
|
tasks:
|
|
- name: Install amazon epel
|
|
command: amazon-linux-extras install epel -y
|
|
|
|
- name: Install phpMyAdmin
|
|
yum:
|
|
name: phpmyadmin
|
|
state: latest
|
|
|
|
- name: Create phpMyAdmin.conf
|
|
template:
|
|
src: phpMyAdmin.j2
|
|
dest: /etc/httpd/conf.d/phpMyAdmin.conf
|
|
force: yes
|