39 lines
509 B
YAML
39 lines
509 B
YAML
---
|
|
- name: install aptitude
|
|
become: yes
|
|
apt:
|
|
update_cache: yes
|
|
pkg:
|
|
- aptitude
|
|
|
|
- name: install terminal packages
|
|
become: yes
|
|
apt:
|
|
update_cache: yes
|
|
pkg:
|
|
- vim
|
|
- git
|
|
- htop
|
|
- tmux
|
|
- graphviz
|
|
- screen
|
|
- traceroute
|
|
- command-not-found
|
|
- dnsutils
|
|
|
|
- name: install git
|
|
become: yes
|
|
apt:
|
|
update_cache: yes
|
|
pkg:
|
|
- git
|
|
|
|
- name: install browser
|
|
become: yes
|
|
apt:
|
|
update_cache: yes
|
|
pkg:
|
|
- firefox
|
|
|
|
|