Beginning-Ansible-Concepts-.../chapter05/exploring-apt.yml
2022-04-23 08:57:49 +01:00

15 lines
260 B
YAML

---
- hosts: web-001.local
become: true
tasks:
- name: Ensure nginx is installed
apt:
name: nginx
state: latest
cache_valid_time: 60
- name: Uninstall tree command
apt:
name: tree
state: absent