Files
ansible-config/playbooks/infrastructure/02-install-essentials.yml

22 lines
418 B
YAML
Raw Permalink Normal View History

---
- name: Install essential packages
hosts: all_except_ansible
become: yes
tasks:
- name: Install system utilities
apt:
name:
- curl
- wget
- git
- htop
- net-tools
- ufw
- software-properties-common
- ca-certificates
- gnupg
- lsb-release
state: present
update_cache: yes