Files
2025-05-20 11:57:43 -04:00

40 lines
696 B
YAML

- hosts: web
remote_user: root
become: yes
tasks:
- name: Install Apache
yum:
name: httpd
state: installed
notify:
- Restart Apache
- name: Install nano
yum:
name: nano
state: installed
notify:
- Restart Apache
- name: Install MySQL
yum:
name: mysql
state: installed
notify:
- Restart Apache
- name: Remove Apache
yum:
name: httpd
state: removed
- name: Remove nano
yum:
name: nano
state: removed
- name: Remove MySQL
yum:
name: httpd
state: removed
handlers:
- name: Restart Apache
service:
name: httpd
state: restarted