add initial update_all_packages role

This commit is contained in:
Chris Hammer
2022-03-15 12:40:23 -04:00
parent 42c1ebd9b8
commit 715dcfcc33
12 changed files with 112 additions and 0 deletions

View File

@ -0,0 +1,8 @@
---
- name: Update all packages on host
package: name=* state=latest
tags:
- skip_ansible_lint
...