roles学习笔记(模拟安装httpd服务)

这是目录(app 是模拟的角色)

[root@test ansible]# tree
.
├── app_role.retry
├── app_role.yml
├── httpd_role.yml
├── nginx_role.retry
├── nginx_role.yml
└── roles
├── app
│   ├── files
│   │   └── moniwenjiancopy.conf
│   ├── handlers
│   │   └── main.yml
│   ├── tasks
│   │   ├── copy.yml
│   │   ├── cptml.yml
│   │   ├── group.yml
│   │   ├── main.yml
│   │   ├── start.yml
│   │   ├── user.yml
│   │   └── yum.yml
│   ├── templates
│   │   └── httpd.conf.j2
│   └── vars
│   └── main.yml
├── httpd
│   ├── files
│   │   └── httpd.conf
│   └── tasks
│   ├── copy.yml
│   ├── main.yml
│   └── user.yml
└── nginx
├── tasks
│   ├── group.yml
│   ├── main.yml
│   ├── restart.yml
│   ├── start.yml
│   ├── templ.yml
│   ├── user.yml
│   └── yum.yml
└── templates
└── nginx.conf.j2 

此处遇到个坑, ERROR! The requested handler 'restart service' was not found in either the main handlers list nor in the listening handlers list

百度了一下解决方法是把handlers的下的*.yml  文件名称改为main.yml

原文地址:https://www.cnblogs.com/hsyw/p/12191857.html