Merge "Fix condition tuned profile."

This commit is contained in:
Zuul 2020-03-27 19:34:37 +00:00 committed by Gerrit Code Review
commit 2c9551a2d1
1 changed files with 4 additions and 4 deletions

View File

@ -43,8 +43,8 @@
fail:
msg: "Tuned profile conf file is not available to configure isolated cores"
when:
- tuned_isolated_cores
- not tuned_conf_stat_result.stat.exists
- tuned_isolated_cores|bool
- not tuned_conf_stat_result.stat.exists|bool
- name: "Configure isolated cores for profile {{ tuned_profile }}"
lineinfile:
@ -52,8 +52,8 @@
regexp: '^isolated_cores=.*'
line: 'isolated_cores={{ tuned_isolated_cores }}'
when:
- tuned_isolated_cores
- tuned_conf_stat_result.stat.exists
- tuned_isolated_cores|bool
- tuned_conf_stat_result.stat.exists|bool
- name: Enable tuned profile
command: >-