2018-11-01 14:51:12 +00:00
|
|
|
---
|
2024-02-18 11:09:42 +00:00
|
|
|
- name: Add package lock
|
|
|
|
ansible.builtin.dpkg_selections:
|
|
|
|
name: python
|
|
|
|
selection: hold
|
|
|
|
loop: "{{ update_packages_exclude }}"
|
2020-02-22 20:26:42 +00:00
|
|
|
|
2024-02-18 11:09:42 +00:00
|
|
|
- name: Upgrade packages
|
|
|
|
ansible.builtin.apt:
|
|
|
|
update_cache: yes
|
|
|
|
upgrade: dist
|
2020-02-22 20:26:42 +00:00
|
|
|
|
2024-02-18 11:09:42 +00:00
|
|
|
- name: Remove package lock
|
|
|
|
ansible.builtin.dpkg_selections:
|
|
|
|
name: python
|
|
|
|
selection: install
|
|
|
|
loop: "{{ update_packages_exclude }}"
|