Files
2025-05-23 07:32:23 -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