Update ubuntu tasks
This commit is contained in:
parent
a511cc4e17
commit
e37bd7c078
@ -8,6 +8,7 @@
|
||||
- cloud-init
|
||||
- lxd
|
||||
- lxd-client
|
||||
- nano
|
||||
state: absent
|
||||
|
||||
- name: disable ubuntu ads
|
||||
|
@ -2,3 +2,5 @@
|
||||
- import_tasks: cleanup.yml
|
||||
|
||||
- import_tasks: timezone.yml
|
||||
|
||||
- import_tasks: packages.yml
|
||||
|
38
roles/ubuntu/tasks/packages.yml
Normal file
38
roles/ubuntu/tasks/packages.yml
Normal file
@ -0,0 +1,38 @@
|
||||
---
|
||||
- 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
|
||||
- tracerouter
|
||||
- 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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user