Fix conditions tuned profile

tuned_isolated_cores is not bool type, check "is defined" and length >0
instead.

Change-Id: Iaeec9a8cc116023b34b357f68614c986992054a0
Closes-Bug: #1879458
This commit is contained in:
Noam Angel 2020-05-19 08:56:40 +00:00
parent 239b432f33
commit 858f495738
1 changed files with 6 additions and 4 deletions

View File

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