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