Updates for buster and gnome desktop.
This commit is contained in:
parent
ad70eb6034
commit
a72fae8d38
5 changed files with 23 additions and 20 deletions
|
@ -1,16 +1,16 @@
|
|||
- name: add stretch-backports
|
||||
- name: install extra packages from stable
|
||||
apt: name={{ extra_pkgs }} state=latest
|
||||
|
||||
- name: add {{ deb_release }}-backports
|
||||
apt_repository:
|
||||
repo: deb http://deb.debian.org/debian/ stretch-backports main
|
||||
repo: deb http://deb.debian.org/debian/ {{ deb_release }}-backports main
|
||||
state: present
|
||||
update_cache: yes
|
||||
|
||||
- name: install extra packages from stable
|
||||
apt: name={{ item }} state=latest
|
||||
with_items: "{{ extra_pkgs }}"
|
||||
when: extra_pkgs_bpo|length
|
||||
|
||||
- name: install extra packages from backports
|
||||
apt: name={{ item }} state=latest default_release=stretch-backports
|
||||
with_items: "{{ extra_pkgs_bpo }}"
|
||||
apt: name={{ extra_pkgs_bpo }} state=latest default_release={{ deb_release }}-backports
|
||||
when: extra_pkgs_bpo|length
|
||||
|
||||
- name: check if gdm3 is installed
|
||||
stat: path=/etc/gdm3/daemon.conf
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue