This commit is contained in:
Christoph 2021-01-29 21:08:21 +01:00
parent 8597b0ce8a
commit 82dca4a02c
3 changed files with 39 additions and 0 deletions

View File

@ -571,6 +571,11 @@ apt_remove:
- tor - tor
- tor-geoipdb - tor-geoipdb
- torsocks - torsocks
apt_remove_xenial:
- netplan.io
apt_remove_bionic:
- netplan.io - netplan.io
apt_remove_purge: false apt_remove_purge: false

View File

@ -262,6 +262,28 @@
tags: tags:
- apt-remove - apt-remove
- name: (apt.yml) Remove unwanted packages Ubuntu bionic
apt:
name: "{{ apt_remove_bionic }}"
state: absent
purge: "{{ apt_remove_purge }}"
when:
- ansible_facts['distribution'] == "Ubuntu"
- ansible_facts['distribution_release'] == "bionic"
tags:
- apt-remove
- name: (apt.yml) Remove unwanted packages Ubuntu xenial
apt:
name: "{{ apt_remove_xenial }}"
state: absent
purge: "{{ apt_remove_purge }}"
when:
- ansible_facts['distribution'] == "Ubuntu"
- ansible_facts['distribution_release'] == "xenial"
tags:
- apt-remove
- name: (apt.yml) autoremove - name: (apt.yml) autoremove
apt: apt:
autoremove: true autoremove: true

View File

@ -227,6 +227,18 @@
- finish-client-install - finish-client-install
- name: "For OS: Ubuntu 20.04LTS, Arch: amd64"
import_tasks: ubuntu-x11vnc-2004-amd64.yml
when:
- ansible_distribution_version == "20.04"
- ansible_architecture == "x86_64"
tags:
- x11vnc
- x11vnc-2004
- finish-client-install
- name: "Configure LUKS" - name: "Configure LUKS"
import_tasks: luks.yml import_tasks: luks.yml
when: "groups['client_pc']|string is search(inventory_hostname)" when: "groups['client_pc']|string is search(inventory_hostname)"