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

ansible note

时间:2014-08-26 15:05:16      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   ar   div   log   sp   

[root@localhost ansible]# tree -hp
.
├── [-rw-r--r-- 7.0K] ansible.cfg
├── [-rw-r--r-- 1.2K] hosts
├── [drwxr-xr-x 4.0K] playbook
│   └── [-rw-r--r-- 424] hosts_deny.yaml
└── [drwxr-xr-x 4.0K] templates
└── [-rwxr-xr-x 286] hosts_deny.sh

 

hosts_deny.yaml

---
- hosts: apache_servers
  remote_user: root
  vars:
      local_doc: /etc/ansible/templates/hosts_deny.sh
      remote_doc: /usr/local/sbin/hosts_deny.sh
  tasks:
  - name: upload file
    copy: src={{local_doc}} dest={{remote_doc}} owner=root mode=0744
  - name: execute sh
    shell: /usr/local/sbin/hosts_deny.sh
  - name: cron
    cron: name="deny baleful ip" minute="0" hour="0" job="/usr/local/sbin/hosts_deny.sh"

 

ansible note

标签:des   style   blog   color   os   ar   div   log   sp   

原文地址:http://www.cnblogs.com/metasequoia/p/3937078.html

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