这是目录(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