我正在创建一个用于网络设备编排的剧本。我需要根据收到的布尔变量输入执行某些命令。
是否可以使用布尔输入来填充需要在一个任务中执行的命令?如果可能的话,我更喜欢使用 1 个任务。
为了更好地解释我想要实现的目标,让我提供这个例子:
---
task: foo_netw_task
ios_config:
provider: "{{ router_provider }}"
lines:
- "{{if bool_val_1 then 'command_1'}}"
- "{{if bool_val_2 then 'command_2'}}"
- "{{if bool_val_3 then 'command_3'}}"
因此请给出以下输入:
bool_val_1 = true, bool_val_2 = true, bool_val_3 = false
我希望执行的剧本看起来像这样:
task: foo_netw_task
ios_config:
provider: "{{ router_provider }}"
lines:
- 'command_1'
- 'command_2'
感谢您的帮助!
答案1
在 ansible 中无法省略列表项。但是,您可以使用辅助变量来仅选择正确的条目:
---
- hosts: localhost
vars:
bool_val_1: true
bool_val_2: true
bool_val_3: false
tasks:
- shell: "{{item}}"
vars:
tmp_lines:
- "{{'echo command1' if bool_val_1 else None }}"
- "{{'echo command2' if bool_val_2 else None }}"
- "{{'echo command3' if bool_val_3 else None }}"
loop: "{{tmp_lines|select()|list}}"
Output:
PLAY [localhost] ***************************************************************************************************************************************************************
TASK [Gathering Facts] *********************************************************************************************************************************************************
ok: [localhost]
TASK [shell] *******************************************************************************************************************************************************************
changed: [localhost] => (item=echo command1)
changed: [localhost] => (item=echo command2)
PLAY RECAP *********************************************************************************************************************************************************************
localhost : ok=2 changed=1 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0