Files
ansible_tuned/tasks/main.yml
2023-09-19 22:19:18 +02:00

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