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

ansible-playbook 之handlers和notify(三)

时间:2019-12-29 18:28:59      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:ted   安装   use   yum   package   backup   有关   资源   ice   

一 、handlers和notify结合触发条件

handlers(触发器): 定义一些task列表,与之前剧本中task没有关系,只有资源发送变化才会采取一定的操作

notify:notify中调用handler中定义的操作

二、修改配置文件,重启服务

1、yum安装httpd

[root@linux-node1 ~]# tree ansible/
ansible/
├── files
│   └── httpd.conf
├── file.yaml
└── httpd.yaml
[root@linux-node1 ansible]# cat httpd.yaml 
---
- hosts: date
  remote_user: root
  
  tasks:
    - name: install httpd package
      yum: name=httpd
    - name: copy conf file
      copy: src=files/httpd.conf dest=/etc/httpd/conf backup=yes
    - name: start service
      service: name=httpd state=started enabled=yes

2、修改配置文件端口8081,在次执行,httpd服务没有重启

[root@linux-node1 ansible]# cat httpd.yaml 
---
- hosts: date
  remote_user: root
  
  tasks:
    - name: install httpd package
      yum: name=httpd
    - name: copy conf file
      copy: src=files/httpd.conf dest=/etc/httpd/conf backup=yes
      notify: restart service
    - name: start service
      service: name=httpd state=started enabled=yes

  handlers:
    - name: restart service
      service: name=httpd state=restarted

技术图片

 技术图片

 三、定义多个notify

技术图片 

ansible-playbook 之handlers和notify(三)

标签:ted   安装   use   yum   package   backup   有关   资源   ice   

原文地址:https://www.cnblogs.com/zhaojingyu/p/12115681.html

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