1.backup origin deploy.yml to backup_deploy_yml_file

2.merge small task file to one directory
This commit is contained in:
fumingwei
2020-11-27 16:56:49 +06:00
parent 6fc0a90da7
commit cf2e80c4d7
31 changed files with 0 additions and 412 deletions

View File

@@ -0,0 +1,13 @@
- hosts: adc_mcn0
remote_user: root
tasks:
- name: "verify sapp md5 in mcn0"
shell: md5sum /home/mesasoft/sapp_run/sapp
register: sapp_md5sum
- name: assert
assert:
that:
- sapp_md5sum.stdout.find('1ca2eb92e4269066c6a056e41bb394b3') != -1
fail_msg: "FAIL"
success_msg: "PASS"