Genericize the roal to look like the rest

This commit is contained in:
2021-07-25 03:23:32 +00:00
parent fe3c5c948f
commit 580805bc34
21 changed files with 275 additions and 38 deletions

16
tasks/Debian-default.yml Normal file
View File

@@ -0,0 +1,16 @@
---
# tasks file for ensure_os_patch
- name: 'ensure Debian patch'
when:
- ansible_system == 'Linux'
- ansible_pkg_mgr == 'apt'
ansible.builtin.apt:
autoclean: 'yes'
autoremove: 'yes'
upgrade: 'dist'
notify:
- 'ensure_os_patch.package_facts'
- 'ensure_os_patch.service_facts'
- name: 'flush handlers'
meta: 'flush_handlers'