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

ansible-playbook

时间:2017-12-28 13:52:06      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:图片   remote   主机   ansible   nbsp   one   show   bash   template   

语言格式:yml

  单个yml文件示例:

 

---
 - hosts: webservers          #主机组
   vars:                             ##变量设置
     http_port: 80
     max_clients: 200
   remote_user: root
   tasks:                            ###主要任务
   - name: ensure apache is at the latest version
     yum: pkg=httpd state=latest
   - name: write the apache config file
     template: src=/srv/httpd.j2 dest=/etc/httpd.conf
     notify:                                 ##条件触发
     - restart apache                      ##重启服务
   - name: ensure apache is running
     service: name=httpd state=started
   handlers:                                 ##在发生改变时执行的操作
     - name: restart apache
       service: name=httpd state=restarted

 ‘notify’ 下列出的即是 handlers.

 

ansible-playbook基本介绍 

 

项目结构:

技术分享图片
site.yml
webservers.yml
fooservers.yml
roles/
   common/
     files/
     templates/
     tasks/
     handlers/
     vars/
     defaults/
     meta/
   webservers/
     files/
     templates/
     tasks/
     handlers/
     vars/
     defaults/
     meta/
View Code

 

ansible-playbook

标签:图片   remote   主机   ansible   nbsp   one   show   bash   template   

原文地址:https://www.cnblogs.com/FRESHMANS/p/8134893.html

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