19 lines
353 B
YAML
19 lines
353 B
YAML
---
|
|
# tasks file for tco.tuned
|
|
- name: "[tuned] - install"
|
|
package:
|
|
name: tuned
|
|
state: present
|
|
|
|
- name: "[tuned] - service"
|
|
ansible.builtin.service:
|
|
name: tuned
|
|
state: started
|
|
enabled: true
|
|
|
|
- name: "[tuned] - select profile"
|
|
copy:
|
|
content: "{{ tuned_profile }}"
|
|
dest: /etc/tuned/active_profile
|
|
notify: restart tuned
|