failed
프로세스가 실행 중인지 확인하는 명령을 실행 한 후 Jinja2 필터로 확인할 수 있습니다 .
다음은 명령의 출력을 사용하여 systemctl status apache2
Apache가 실행 중인지 여부를 결정 하는 예입니다 .
- name: Check if Apache is running
command: systemctl status apache2
ignore_errors: yes
changed_when: false
register: service_apache_status
- name: Report status of Apache
fail:
msg: |
Service apache2 is not running.
Output of `systemctl status apache2`:
{{ service_apache_status.stdout }}
{{ service_apache_status.stderr }}
when: service_apache_status | failed
첫 번째 작업의 명령이 실패하면 두 번째 작업은 실패하고 첫 번째 작업이 실패한 이유를 보여줍니다.
리턴 코드는에 저장됩니다 service_apache_status.rc
.
실패 출력 예 :
TASK: [Check if Apache is running] ***********************
failed: [localhost] => {"changed": false, "cmd": ["systemctl", "status", "apache2"], "delta": "0:00:00.009379", "end": "2016-06-06 15:17:27.827172", "rc": 3, "start": "2016-06-06 15:17:27.817793", "stdout_lines": ["* apache2.service", " Loaded: not-found (Reason: No such file or directory)", " Active: inactive (dead)"], "warnings": []}
stdout: * apache2.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
...ignoring
TASK: [Report status of Apache] ***************************
failed: [localhost] => {"failed": true}
msg: apache2 is not running
systemctl status apache2 output:
* apache2.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
pgrep
프로세스를 실행 중인지 확인하기 위해을 사용하는 다른 방법 (아마도 덜 신뢰할 수도 있음) 이 있습니다.
- name: Check if Apache is running
shell: pgrep apache2
ignore_errors: yes
changed_when: false
register: service_apache_status
- name: Report status of Apache
fail:
msg: |
Service apache2 is not running.
Return code from `pgrep`:
{{ service_apache_status.rc }}
when: service_apache_status.rc != 0
when: service_apache_status | failed
작동합니까?failed
토큰을 찾service_apache_status
습니까?