update..
This commit is contained in:
parent
8597b0ce8a
commit
82dca4a02c
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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)"
|
||||||
|
Loading…
Reference in New Issue
Block a user