xoxys.update/tasks/debian.yml

18 lines
375 B
YAML
Raw Normal View History

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: True
2024-02-18 11:09:42 +00:00
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 }}"