20.11.rc3 rebase version 20.11

This commit is contained in:
fumingwei
2021-01-31 22:43:40 +08:00
parent bcf5049ecb
commit 6dfaf41870
195 changed files with 2931 additions and 2149 deletions

View File

@@ -0,0 +1,13 @@
- 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"