概述
一、copy功能
yml文件:
---
- name: configure copy local file to remote_host
hosts: all
tasks:
- name: copy yum config file
copy:
src: files/centos7.repo
dest: /etc/yum.repos.d/
执行文件 ansible-playbook copy.yml
二、安装软件,启动软件,我们已安装httpd,php,php-mysql为例
yml文件:
---
- name: configure web server
hosts: webserver
tasks:
- name: install web app
yum:
name: "{{item}}"
state: present
with_items:
- httpd
- php
- php-mysql
- name: configure web app
service:
name: httpd
state: started
enabled: true
执行命令 ansibl-playbook lamp.yml
最后
以上就是粗暴跳跳糖为你收集整理的ansible-playbook 配合yml文件,实现批量功能的全部内容,希望文章能够帮你解决ansible-playbook 配合yml文件,实现批量功能所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复