gpt4 book ai didi

ansible - 仅当主机不属于组时才运行任务

转载 作者:行者123 更新时间:2023-12-03 05:00:35 25 4
gpt4 key购买 nike

仅当当前剧本的主机不属于某个组时,我才希望能够运行 ansible 任务。在半伪代码中:

- name: my command
command: echo stuff
when: "if {{ ansible_hostname }} not in {{ ansible_current_groups }}"

我应该怎么做?

最佳答案

这是另一种方法:

- name: my command
command: echo stuff
when: "'groupname' not in group_names"

group_names 是一个神奇的变量,如下所示:https://docs.ansible.com/ansible/latest/reference_appendices/special_variables.html :

group_names is a list (array) of all the groups the current host is in.

关于ansible - 仅当主机不属于组时才运行任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21008083/

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