首页 > 代码库 > ansible学习笔记(一)

ansible学习笔记(一)

最近在学习使用ansible,为了未来的大规模部署应用做准备,这东西比我之前用过的puppet,saltstack都简便一点,没有client端,也不需要额外配置,基本上手技能用,据说在国外的热门程度目前也超过saltstack了。

下面就开始零星的记录吧。


确保服务在running状态

tasks:
  - name: make sure apache is running
    service: name=httpd state=running

写web server的vhost配置文件可以采用变量的方式

tasks:
  - name: create a virtual host file for {{ vhost }}
    template: src=http://www.mamicode.com/somefile.j2 dest=/etc/httpd/conf.d/{{ vhost }}
    
    
组合起来看下面两条示例。notify中的task被称作为handlers,它们是单独定义的,notify指定handlers的name,handlers分列了各个条目的task。
- name: template configuration file
 template: src=http://www.mamicode.com/template.j2 dest=/etc/foo.conf
 notify:
    - restart memcached
    - restart apache
   
    handlers:
   - name: restart memcached
     service:  name=memcached state=restarted
   - name: restart apache
     service: name=apache state=restarted

本文出自 “breeze” 博客,请务必保留此出处http://387249.blog.51cto.com/377249/1565151

ansible学习笔记(一)