12 lines
153 B
YAML
12 lines
153 B
YAML
|
- name: Install base packages
|
||
|
become: true
|
||
|
package:
|
||
|
name:
|
||
|
- htop
|
||
|
- tmux
|
||
|
- git
|
||
|
- nano
|
||
|
- python3
|
||
|
state: present
|
||
|
|