一.Ansible简介 Ansible是新出现的自动化运维工具,基于python开发,集合了众多运维工具(puppet(ruby).cfengine.chef.func.fabric.)的优点,实现了批量系统配置.批量程序部署.批量运行命令等功能. 特性: 1. no agent:不需要在被管控主机上安装任何软件 2. no server: 无服务器端,使用时直接运行命令即可 3. modules in any languages: 基于模块工作,可使用任意语言开发模块. 4. Yaml,not…
使用ansible的同学都知道,ansible只支持新增删除具体的某个文件夹或者文件,如下所示: 1. 创建目录,删除整个目录 - name: Create a directory if it does not exist file: path: /appvol/some_directory state: directory mode: '0755' - name: Remove a directory if it exist file: path: /appvol/some_directory…