This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
solutions-tsg-scripts/tasks/verify_systemctl_sapp.yml
fumingwei adcaf5cb4c 1.add new city Kokshetau deploy config
2.add verify tfe and sapp service
2020-11-21 09:51:40 +06:00

14 lines
327 B
YAML

- hosts: adc_mcn0
remote_user: root
tasks:
- name: "register systemctl status sapp result"
shell: systemctl status sapp
register: sapp_results
- name: assert
assert:
that:
- sapp_results.stdout.find('active (running)') != -1
fail_msg: "FAIL"
success_msg: "PASS"