Role? 역할? 알려진 파일구조를 기반으로 특정 var_files, 작업 및 핸들러를 자동으로 로드하는 방법 역할별로 콘텐츠를 그룹화 하면 다른 사용자와 쉽게 역할을 공유할 수 있다. # tree roles [student@controller ~]$ tree roles/ roles/ ├── apache │ ├── handlers │ │ └── main.yaml │ ├── tasks │ │ └── main.yaml │ ├── templates │ │ └── apache.conf.j2 │ └── vars │ └── main.yaml ├── common │ └── tasks │ └── main.yaml ├── haproxy │ ├── handlers │ │ └── main.yaml │ ├── tasks │ ..