我的库存文件的内容 -
[webservers]
x.x.x.x ansible_ssh_user=ubuntu
[dbservers]
x.x.x.x ansible_ssh_user=ubuntu
在我的任务文件中,它是共同的角色,即它将在两台主机上运行,但我想在主机Web服务器上运行以下任务,而不是在库存文件中定义的dbservers中
- name: Install required packages
apt: name={{ item }} state=present
with_items:
- '{{ programs }}'
become: yes
tags: programs
是模块有用还是有其他方法?我怎么能这样做?
答案 0 :(得分:34)
如果你想在所有主机上运行你的角色,但只有一个任务仅限于webservers
组,那么 - 就像你已经建议的那样 - when
是你的朋友。
您可以定义如下条件:
when: inventory_hostname in groups['webservers']
答案 1 :(得分:4)
在某些情况下可以考虑的替代方法是-
delegate_to: hostname
此示例还包含来自ansible文档的示例,用于遍历一个组。 https://docs.ansible.com/ansible/latest/user_guide/playbooks_delegation.html-
- hosts: app_servers
tasks:
- name: gather facts from db servers
setup:
delegate_to: "{{item}}"
delegate_facts: True
loop: "{{groups['dbservers']}}"
答案 2 :(得分:3)
谢谢,这对我有帮助。
[production]
host1.dns.name
[internal]
host2.dns.name
- name: install the sphinx-search rpm from a remote repo on x86_64 - internal host
when: inventory_hostname in groups['internal']
yum:
name: http://sphinxsearch.com/files/sphinx-2.2.11-1.rhel7.x86_64.rpm
state: present
- name: install the sphinx-search rpm from a remote repo on i386 - Production
when: inventory_hostname in groups['production']
yum:
name: http://sphinxsearch.com/files/sphinx-2.2.11-2.rhel6.i386.rpm
state: present