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/verify_systemctl_tfe.yml
2021-01-31 22:50:33 +08:00

17 lines
360 B
YAML

- hosts:
- adc_mcn1
- adc_mcn2
- adc_mcn3
remote_user: root
tasks:
- name: "register systemctl status tfe result"
shell: systemctl status tfe
register: tfe_results
- name: assert
assert:
that:
- tfe_results.stdout.find('active (running)') != -1
fail_msg: "FAIL"
success_msg: "PASS"