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

roles(高级运维)

时间:2019-02-21 23:20:45      阅读:402      评论:0      收藏:0      [点我收藏+]

标签:template   高级   imp   task   root   一个   运维   pre   div   

/root

  /roles

  web.yml

    /web  ansible的一个组

      /files

      /handlers

      /tasks(必须有)

        installmariadb.yml

        installnginx.yml

        installuwsgi.yml

        installredis.yml

        main.yml

      /templates

      /vars

 

web.yml

- hosts: web
  remote_user: root
  roles:
  - web

 

installmariadb.yml

- name: installmariadb
  yum: name=mariadb 

 

installnginx.yml

- name: installnginx
  yum: name=nginx

 

installuwsgi.yml

- name: installuwsgi
  yum: name=uwsgi

 

installredis.yml

- name: installredis
  yum: name=redis

 

main.yml

- import_tasks: installnginx.yml
- import_tasks: installuwsgi.yml
- import_tasks: installmariadb.yml
- import_tasks: installredis.yml

 

roles(高级运维)

标签:template   高级   imp   task   root   一个   运维   pre   div   

原文地址:https://www.cnblogs.com/NachoLau/p/10415873.html

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