
With update of ansible-lint to version >=6.0.0 a lot of new linters were added, that enabled by default. In order to comply with linter rules we're applying changes to the role. With that we also update metdata to reflect current state. Depends-On: https://review.opendev.org/c/openstack/ansible-role-systemd_service/+/888223 Change-Id: I730ae569f199fc8542a5a61beb149f459465d7e2
15 lines
264 B
YAML
15 lines
264 B
YAML
---
|
|
- name: Enable ksm systemd service
|
|
service:
|
|
name: ksm
|
|
enabled: yes
|
|
state: started
|
|
|
|
- name: Enable ksmtuned systemd service
|
|
service:
|
|
name: ksmtuned
|
|
enabled: yes
|
|
state: started
|
|
when:
|
|
- ansible_facts['pkg_mgr'] in ['dnf', 'apt']
|