ansible-desktop/roles/ubuntu/tasks/packages.yml

39 lines
509 B
YAML
Raw Normal View History

2020-07-01 14:25:21 +00:00
---
- 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
2020-07-01 14:47:58 +00:00
- traceroute
2020-07-01 14:25:21 +00:00
- 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