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

12 lines
223 B
YAML

- hosts: ansible
remote_user: root
become: yes
tasks:
- name: Install Apache
apt:
name: apache2
state: present
- name: Remove Apache
apt:
name: apache2
state: absent