Merge "Fix ipa_kernel_options_default when ipa_collect_lldp is false"
This commit is contained in:
@@ -164,7 +164,7 @@ ipa_benchmarks: >
|
|||||||
|
|
||||||
# List of default kernel parameters for Ironic python agent.
|
# List of default kernel parameters for Ironic python agent.
|
||||||
ipa_kernel_options_default: >
|
ipa_kernel_options_default: >
|
||||||
{{ ['ipa-collect-lldp=' ~ '1' if ipa_collect_lldp else '0'] +
|
{{ ['ipa-collect-lldp=' ~ ('1' if ipa_collect_lldp | bool else '0')] +
|
||||||
['ipa-inspection-collectors=' ~ ipa_collectors | join(',')] +
|
['ipa-inspection-collectors=' ~ ipa_collectors | join(',')] +
|
||||||
['ipa-inspection-benchmarks=' ~ ipa_benchmarks | join(',')] }}
|
['ipa-inspection-benchmarks=' ~ ipa_benchmarks | join(',')] }}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
Fixes ``ipa_kernel_options_default`` when ``ipa_collect_lldp`` is set to
|
||||||
|
false. `LP#2110505 <https://bugs.launchpad.net/kayobe/+bug/2110505>`__
|
||||||
Reference in New Issue
Block a user