[ansible] directory 가 없을 때 생성하기 (if directory not exists, make the directory)
Ansible-Puppet-Chef 2014. 6. 25. 16:35특정 디렉토리가 없으면 생성하게 하는 것을 ansible에서는 이렇게 표현가능하다.
- name: If exists
debug: msg='/app/src exists'
when: check_path.stat.exists
- name: If not exists
debug: msg='/app/src is not exists, so ansible make /app/src '
when: check_path.stat.exists == false
- name: If not exists 2
file: path=/app/src state=directory
when: check_path.stat.exists == false
<결과>
첫번째 실행
TASK: [tomcat1 | If exists] ***************************************************
skipping: [192.168.1.50]
TASK: [tomcat1 | If not exists] ***********************************************
ok: [192.168.1.50] => {
"item": "",
"msg": "/app/src is not exists, so ansible make /app/src "
}
TASK: [tomcat1 | If not exists 2] *********************************************
changed: [192.168.1.50]
두번째 실행
TASK: [tomcat1 | If exists] ***************************************************
ok: [192.168.1.50] => {
"item": "",
"msg": "/app/src exists"
}
TASK: [tomcat1 | If not exists] ***********************************************
skipping: [192.168.1.50]
TASK: [tomcat1 | If not exists 2] *********************************************
skipping: [192.168.1.50]
debug를 빼면 task 하나를 줄일 수 있다.
- name: If exists
debug: msg='/app/src exists'
when: check_path.stat.exists
- name: If not exists
file: path=/app/src state=directory
when: check_path.stat.exists == false
'Ansible-Puppet-Chef' 카테고리의 다른 글
[ansible] 특정서버에 간단 명령 실행하기 (0) | 2014.06.26 |
---|---|
[ansible] tomcat 설치 (0) | 2014.06.25 |
[ansible] whitespace, indent (0) | 2014.06.18 |
[ansible] oracle java 7 설치하기 (0) | 2014.06.18 |
[ansible] 디버그하기 ( debug ) - echo, debug, tags, step (0) | 2014.06.18 |