ansible向inventory文件中添加host
Posted safeblood
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible向inventory文件中添加host相关的知识,希望对你有一定的参考价值。
- hosts: localhost
gather_facts: false
tasks:
- name: add a host to a group in memory
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的主要内容,如果未能解决你的问题,请参考以下文章