summaryrefslogtreecommitdiff
path: root/roles/ubuntu-ws/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/ubuntu-ws/tasks/main.yml')
-rw-r--r--roles/ubuntu-ws/tasks/main.yml28
1 files changed, 17 insertions, 11 deletions
diff --git a/roles/ubuntu-ws/tasks/main.yml b/roles/ubuntu-ws/tasks/main.yml
index 04300dbd..57b17462 100644
--- a/roles/ubuntu-ws/tasks/main.yml
+++ b/roles/ubuntu-ws/tasks/main.yml
@@ -8,11 +8,6 @@
with_items:
- flashplugin-installer
-- name: install xubuntu-core task
- command: "apt-get -y -q install xubuntu-core^"
- args:
- warn: no
-
- name: base packages
apt:
name:
@@ -22,21 +17,23 @@
- exfat-fuse
- exfat-utils
- ntfs-3g
- - gnupg-curl
+# - gnupg-curl
- pass
- evince
- geeqie
- file-roller
- cifs-utils
+ - exfat-fuse
+ - exfat-utils
state: present
- name: install browser
apt:
- name: "{{ item }}"
+ name:
+ - firefox
+ - chromium-browser
state: present
with_items:
- - firefox
- - chromium-browser
- name: install multimedia stuff
apt:
@@ -65,12 +62,21 @@
- software-properties-common
- python3-software-properties
- flashplugin-installer
+ - network-manager
+ - network-manager-gnome
+ - network-manager-pptp
+ - network-manager-pptp-gnome
+ - ufw
state: absent
autoremove: yes
purge: yes
+- name: remove netplan config for network-manager
+ file:
+ name: /etc/netplan/01-network-manager-all.yaml
+ state: absent
+
- name: install extra packages
apt:
- name: "{{ item }}"
+ name: "{{ ubuntu_ws_extra_packages|default([]) }}"
state: present
- with_items: "{{ ubuntu_ws_extra_packages|default([]) }}"