Fixed yamllint errors and warnings across all Ansible files: - Reformatted long lines to stay within 80 character limit - Standardized boolean values to use true/false instead of yes/no - Fixed YAML folding syntax for multiline strings - Removed erroneous triple quotes in k3s-server tasks This resolves all yamllint issues reported by the CI pipeline.
11 lines
189 B
YAML
11 lines
189 B
YAML
---
|
|
# Handlers for common role
|
|
|
|
- name: restart unattended-upgrades
|
|
systemd:
|
|
name: unattended-upgrades
|
|
state: restarted
|
|
|
|
- name: reload systemd
|
|
systemd:
|
|
daemon_reload: true
|