fix install-packages playbook, use var in loop and undefined not unset

This commit is contained in:
2024-01-04 15:07:20 -06:00
parent f7966b041e
commit 9088458b5d
3 changed files with 4 additions and 4 deletions

View File

@@ -5,6 +5,6 @@
update_cache: true
name: "{{ package }}"
state: latest
failed_when: package is unset
failed_when: package is undefined
...