
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
15 lines
266 B
YAML
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']
|