imfreedom/ansible

Fix a syntax error

2021-12-27, Gary Kramlich
bdeb43dc31c6
Fix a syntax error
---
- name: enable package updates
set_fact:
update: "yes"
when: not update|bool
tags:
- never
- update
- name: update packages
apt:
upgrade: dist
autoremove: "yes"
update_cache: "yes"
force_apt_get: "yes"
when: update|bool
tags:
- update