Dmitriy Rabotyagov aa1503d8ce Auto-fix yaml rules
In order to reduce divergance with ansible-lint rules, we apply
auto-fixing of violations.

In current patch we replace all kind of truthy variables with
`true` or `false` values to align with recommendations along with
alignment of used quotes.

Change-Id: Ie1737a7f88d783e39492c704bb6805c89a199553
2025-02-12 16:03:55 +00:00

15 lines
266 B
YAML

---
- name: Enable ksm systemd service
service:
name: ksm
enabled: true
state: started
- name: Enable ksmtuned systemd service
service:
name: ksmtuned
enabled: true
state: started
when:
- ansible_facts['pkg_mgr'] in ['dnf', 'apt']