我有一个用例,其中我的库存文件中有一组主机,例如 inventory.txt
[ios]
a.b.c.d
s.i.s.i
x.x.c.c
我需要检查每个主机上是否启用了 vstack,如果启用,我需要将其禁用作为自我修复过程。
我的剧本:
---
- hosts: all
connection: network_cli
become: true
become_method: enable
tasks:
- name: Verify whether vstack feature is enabled
ios_command:
commands:
- show vstack config | incl Role
vars:
ansible_command_timeout: 30
register: showvstack
- debug:
var: showvstack.stdout
# when: showvstack.stdout is regex("'Role.*'")
#- name: set regex pattern
# set_fact:
# regex_pattern: "^.*Client (SmartInstall enabled).*$"
- name: Check with when condition
debug:
msg: "Vstack Enabled!!!!"
when: showvstack.stdout | join('') | match('Client (SmartInstall enabled)') or showvstack.stdout | join('') | match('Client')
- name: If vstack is enabled on switch disable vstack
ios_config:
lines:
- no vstack
when: showvstack.stdout | join('') | search('Client')
----------------------------------------------------------------------------
播放结果
TASK [Gathering Facts] **********************************************************************************************************************************************************************
ok: [a.b.c.d]
ok: [x.v.b.n]
ok: [z.z.x.c]
TASK [Verify whether vstack feature is enabled] *********************************************************************************************************************************************
ok: [a.b.c.d]
ok: [x.v.b.n]
ok: [z.z.x.c]
TASK [debug] ********************************************************************************************************************************************************************************
ok: [a.b.c.d] => {
"showvstack.stdout": [
"Role: Client (SmartInstall enabled)"
]
}
ok: [x.v.b.n] => {
"showvstack.stdout": [
"Role: NA"
]
}
ok: [z.z.x.c] => {
"showvstack.stdout": [
"Role: Client"
]
}
TASK [Check with when condition] ************************************************************************************************************************************************************
skipping: [a.b.c.d]
skipping: [x.v.b.n]
skipping: [z.z.x.c]
TASK [If vstack is enabled on switch disable vstack] ****************************************************************************************************************************************
skipping: [a.b.c.d]
changed: [x.v.b.n]
changed: [z.z.x.c]
PLAY RECAP **********************************************************************************************************************************************************************************
a.b.c.d : ok=4 changed=1 unreachable=0 failed=0
x.v.b.n : ok=3 changed=0 unreachable=0 failed=0
z.z.x.c : ok=4 changed=1 unreachable=0 failed=0
由于一些思科交换机提供 Role: Client,而一些思科交换机提供 Role: Client Smart Install enabled,上面的播放将打印 vstack present,即使对于其中没有 vstack 的交换机也是如此,因为我正在搜索 Client,并且它还接受 Role: Client Smartinstall Disabled,因为其中存在 Client 字符串。我的问题是,有没有更好的方法来打印消息说 Vstack is present,即使我有一个条件说 Role: Client Smartinstall Disabled
答案1
只需运行命令即可when
有条件的。
tasks
- name: Run show command
ios_command: show vstack config | incl Role
register: showvstack
- name: disable vstack
ios_command: # whatever command disables vstack
when: "'Role: Enabled' in showvstack"
当条件不满足时,将会被跳过。