基本文件目录如下:
httpd所需软件:httpd mariadb mariadb-server php php-mysql gd php-gd
[root@ansible role]# ls
httpd site_nginx.retry site.retry
mariadb php-apache site_apache.yaml
[root@ansible role]# cat site_apache.yaml
---
- hosts: group
roles:
- httpd
- php-apache
- mariadb
1.httpd目录
[root@ansible role]# cd httpd/
[root@ansible httpd]# ls
files handlers tasks templates vars
[root@ansible httpd]# cat files/index.html
hello world
[root@ansible httpd]# cat handlers/main.yaml
---
- name: reload httpd.service
service: name=httpd state=reloaded
[root@ansible httpd]# cat files/index.html
hello world
[root@ansible httpd]# cat handlers/main.yaml<