Compare commits

..

3 Commits

Author SHA1 Message Date
1c6dec03d3 Merge pull request 'yes' (#3) from Staging into main
Reviewed-on: #3
2025-10-28 01:11:40 +00:00
c9df312d68 Merge pull request 'Staging' (#2) from Staging into main
Reviewed-on: #2
2025-10-28 01:07:19 +00:00
2b78550aa9 Merge pull request 'Staging' (#1) from Staging into main
Reviewed-on: #1
2025-08-04 02:56:16 +00:00

View File

@@ -5,13 +5,24 @@
become_method: sudo
become_user: root
tasks:
- name: Update apt cache
- name: Update apt cache (allow release info changes)
apt:
update_cache: yes
cache_valid_time: 3600
force_apt_get: yes
# Use apt options to allow codename/origin/suite changes safely
extra_args: >
-o Acquire::AllowReleaseInfoChange::Suite=true
-o Acquire::AllowReleaseInfoChange::Codename=true
-o Acquire::AllowReleaseInfoChange::Origin=true
- name: Upgrade all packages
- name: Upgrade all packages (allow release info changes)
apt:
upgrade: dist
autoremove: yes
autoclean: yes
autoclean: yes
force_apt_get: yes
extra_args: >
-o Acquire::AllowReleaseInfoChange::Suite=true
-o Acquire::AllowReleaseInfoChange::Codename=true
-o Acquire::AllowReleaseInfoChange::Origin=true