18 lines
264 B
YAML
18 lines
264 B
YAML
---
|
|
- name: Install common utilities
|
|
ansible.builtin.package:
|
|
name:
|
|
- mc
|
|
- htop
|
|
- iotop
|
|
- curl
|
|
- git
|
|
- bash-completion
|
|
- unzip
|
|
- ca-certificates
|
|
- gnupg
|
|
- net-tools
|
|
- btop
|
|
state: present
|
|
|