마짱짱의 지식창고
Wordpress 만드는 과정 - 4 (role) 본문
반응형
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
│ │ └── main.yaml
│ └── templates
│ ├── centos
│ │ └── haproxy.cfg.j2
│ └── ubuntu
│ └── haproxy.cfg.j2
├── mariadb
│ ├── handlers
│ │ └── main.yaml
│ ├── tasks
│ │ └── main.yaml
│ └── templates
│ └── my.cnf.j2
└── nfs
├── handlers
│ └── main.yaml
├── tasks
│ └── main.yaml
├── templates
│ ├── exports.j2
│ └── wp-config.php.j2
└── vars
└── main.yaml
-수정중-
반응형
'Automation > Ansible' 카테고리의 다른 글
Wordpress 만드는 과정 3 - (변수 및 Jinja2 template) (0) | 2020.08.14 |
---|---|
Wordpress 만드는 과정 - 2 (AD-HOC, Playbook) (0) | 2020.08.14 |
Wordpress 만드는 과정 - 1 (준비물, inventory, 구성파일) (0) | 2020.08.14 |
Ansible var 를 이용한 wordpress (0) | 2020.08.11 |
[Ansible] 1. 설치 및 Ad-hoc로만 wordpress 올려보기 (맛보기) (0) | 2020.08.05 |