mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2024-11-22 13:28:00 +01:00
15 lines
184 B
YAML
15 lines
184 B
YAML
---
|
|
#
|
|
# Installs common utilities.
|
|
#
|
|
|
|
- name: Install utilities
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- bmon
|
|
- htop
|
|
- iotop
|
|
- screen
|
|
- vim
|