tuned - add custom profile support, udev/io sched. example

This commit is contained in:
Josh Lay 2020-06-03 21:15:43 -05:00
parent a3cd18f090
commit 9406e7ddfb
6 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{{ ansible_managed | comment }}
#
# tuned '{{ tuned_custom_profile.name }}' configuration
#
{% for section in tuned_custom_profile.sections %}
[{{ section.name }}]
{% for item in section.params %}
{{ item.option }}={{ item.value }}
{% endfor %}
{% endfor %}