Fixed mitogen.yml (#8508)
Fixed the problem when call ansible-playbook contrib/mitogen/mitogen.yml "The error was: 'dict object' has no attribute 'section'" What type of PR is this? /kind bug What this PR does / why we need it: Which issue(s) this PR fixes: Fixes # Special notes for your reviewer: Does this PR introduce a user-facing change?:
This commit is contained in:
parent
54dfe73d24
commit
696101a910
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@
|
||||||
path: ansible.cfg
|
path: ansible.cfg
|
||||||
mode: 0644
|
mode: 0644
|
||||||
section: "{{ item.section | d('defaults') }}"
|
section: "{{ item.section | d('defaults') }}"
|
||||||
option: "{{ item.section }}"
|
option: "{{ item.option }}"
|
||||||
value: "{{ item.value }}"
|
value: "{{ item.value }}"
|
||||||
with_items:
|
with_items:
|
||||||
- option: strategy
|
- option: strategy
|
||||||
|
|
Loading…
Reference in a new issue