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

ansible剧本playbook

时间:2020-09-17 12:49:53      阅读:26      评论:0      收藏:0      [点我收藏+]

标签:--   yam   yml   roo   state   txt   mod   wan   Owner   

格式 .yml | .yaml

--- ======>剧本开头

- hosts: jack7 ======>指定主机或主机组

remote_user: root ====>客户端执行用户

tasks: =========>任务标记

- name: FIRST PLAYBOOK ===>PLAY名称

fetch: =======>调用的模块

src: /tmp/test =======>模块的参数及值

dest: /root/ =======>其他参数及值

注意yaml的语法缩进,必须对齐,并且“:”后面有空格

如下两种写法也是可以的

[root@jack7-1 ansible]# cat test4.yml test5.yml


  • hosts: PD
    remote_user: root
    tasks:
    • name: touch wang.txt
      file: path=/root/wang.txt state=touch mode=0777 owner=jack group=root

  • hosts: PD
    remote_user: root
    tasks:
    • name: absent file
      file: path=/root/wang.txt
      state=absent

ansible剧本playbook

标签:--   yam   yml   roo   state   txt   mod   wan   Owner   

原文地址:https://blog.51cto.com/13434656/2527951

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