12 lines
146 B
YAML
12 lines
146 B
YAML
---
|
|
- name: "Installing system tools"
|
|
apt: >
|
|
name="{{item}}"
|
|
state=present
|
|
with_items:
|
|
- htop
|
|
- lshw
|
|
- slay
|
|
- unrar
|
|
|
|
|