码迷,mamicode.com
首页 > 其他好文 > 详细

ansible 变量定义和引用

时间:2018-11-04 19:14:35      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:roo   res   定义   core   als   process   root   man   color   

cat /etc/ansible/hosts

[nodes]
10.2.1.232 key=232
10.2.1.43 key=43

cat debug.yaml

---
- name: test how to use command module
hosts: nodes
remote_user: root
gather_facts: false
vars:
- content: ‘20181104‘
tasks:
- name: create a file
shell: "echo {{key}} >/root/{{inventory_hostname}}.txt"

结果:

cat  10.2.1.232.txt

232

2.gather_facts


- name: gather_facts of each host
  template: src=/root/nginx.conf dest=/root/nginx.conf

 cat /root/nginx.conf 

worker_processes {{  ansible_processor_cores }};

 \\获取ansible的要调用的相关函数

ansible 变量定义和引用

标签:roo   res   定义   core   als   process   root   man   color   

原文地址:https://www.cnblogs.com/hixiaowei/p/9904550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!