ansible 总览

示例

在Ansible中,剧本是一个YAML文件,其中包含服务器外观的定义。在剧本中,您定义Ansible应该采取什么措施使服务器处于所需状态。只有您定义的内容才能完成。

这是一个基本的Ansible剧本,可在属于该web组的每台主机上安装git :

---
- name: Git installation
  hosts: web
  remote_user: root
  tasks: 
    - name: Install Git
      apt: name=git state=present