imfreedom/ansible

Fix some yaml-lint issues

2021-11-22, Gary Kramlich
f379d3c47d7b
Parents f3127045fa8c
Children 2204b271141b
Fix some yaml-lint issues
--- a/roles/update/tasks/debian.yml Mon Nov 22 04:03:47 2021 -0600
+++ b/roles/update/tasks/debian.yml Mon Nov 22 04:04:25 2021 -0600
@@ -2,9 +2,9 @@
- name: update packages
apt:
upgrade: dist
- autoremove: yes
- update_cache: yes
- force_apt_get: yes
+ autoremove: "yes"
+ update_cache: "yes"
+ force_apt_get: "yes"
when: update|bool
tags:
- update
@@ -14,4 +14,3 @@
reboot:
reboot_timeout: 120
when: reboot_required|bool
-