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