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