- name: 'TASK 1: Debug'
aireos_command:
commands:
- 'debug client <mac address>'
register: debug
我有这个命令,我怎么能让这个命令运行大约5分钟,而不是结束它一配置命令。希望保持该命令运行,以便我们可以在5分钟的持续时间内捕获必要的日志
根据Cisco Wireless LAN Controller (WLC) Command Reference的文档,那里似乎没有sleep
或wait
。
但是根据aireos_command
的描述,你可以引入额外的参数interval
,match
和retries
来实现你的目标。