13 lines
260 B
Text
13 lines
260 B
Text
|
{{ 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 %}
|