- hosts: localhost
gather_facts: false
tasks:
- name: add a host to a group in memory #这个模块只能往内存里添加,palybook执行完就失效了
add_host:
hostname: 172.16.128.199
groups: windows
test: 22
- name: add a host to windows in file
ini_file:
allow_no_value: yes #开启此选项可以向组块里添加没有值和=号的键原来需要key=value现在只需要key就行了
dest: /etc/ansible/hosts
section: windows #往[windows]组块里添加
option: 172.16.128.199 #向组块中添加的key
ansible向inventory文件中添加host
原创
©著作权归作者所有:来自51CTO博客作者safeblood的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Ansible 制定演员表inventory即hosts解析
记录目标主机∶ inventory在没有对Ansible做任何配置的时候,Ansible只能通
ansible 主机名 端口号 python