Fix ansible core 2.20 changes and remove OS that are out of support

Signed-off-by: Jason Rothstein <fdragon@fdragon.org>
This commit is contained in:
2026-05-04 21:21:20 -05:00
parent 192cf375f5
commit 113cc38efb
23 changed files with 25 additions and 254 deletions
+3 -2
View File
@@ -2,8 +2,8 @@
# tasks file for ensure_os_patch
- name: 'ensure Debian patch'
when:
- ansible_system == 'Linux'
- ansible_pkg_mgr == 'apt'
- ansible_facts["system"] == 'Linux'
- ansible_facts["pkg_mgr"]== 'apt'
ansible.builtin.apt:
autoclean: 'yes'
autoremove: 'yes'
@@ -13,4 +13,5 @@
- 'ensure_os_patch.service_facts'
- name: 'flush handlers'
meta: 'flush_handlers'
...