gpt4 book ai didi

ansible - Ansible Inventory 中主机之间的暂停时间

转载 作者:行者123 更新时间:2023-12-04 16:30:06 26 4
gpt4 key购买 nike

我正在我的剧本中尝试以下任务。但不执行暂停。我希望在删除每个主机后播放应该暂停 30 秒。

name: delete host from the NagiosXI
shell: curl -k -XDELETE "https://10.000.00.00/nagiosxi/api/v1/config/host?apikey=qdjcwc&pretty=1&host_name={{ item }}&applyconfig=1"

- pause:
seconds: 120

ignore_error: yes
with_items:
- "{{ groups['grp1'] }}"

如果以正确的方式做或向我提出建议,有人可以建议这是否是正确的方式。我也使用了 serial=1 模块,但它仍然无法正常工作。

最佳答案

您可以在循环下使用 pause :

- name: Pause
hosts: all
gather_facts: False

tasks:
- name: delete host from the NagiosXI
shell: curl -k -XDELETE "https://10.000.00.00/nagiosxi/api/v1/config/host?apikey=qdjcwc&pretty=1&host_name={{ item }}&applyconfig=1"
ignore_errors: True
with_items:
- "{{ groups['grp1'] }}"
loop_control:
pause: 120

关于ansible - Ansible Inventory 中主机之间的暂停时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50347298/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com