1. modify centry url
2. modify sapp template to delete log file 2 days 3. add tcpdump_mesa 4. modify app_l7_protocol.conf 5. modify maat.conf dynamic_maat_redis_server db value
This commit is contained in:
13
tasks/verify_process_md5_hash.yml
Normal file
13
tasks/verify_process_md5_hash.yml
Normal 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"
|
||||
16
tasks/verify_tfe_md5_hash.yml
Normal file
16
tasks/verify_tfe_md5_hash.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
- hosts:
|
||||
- adc_mcn1
|
||||
- adc_mcn2
|
||||
- adc_mcn3
|
||||
remote_user: root
|
||||
tasks:
|
||||
- name: "verify tfe md5 in mcn0"
|
||||
shell: md5sum /opt/tsg/tfe/bin/tfe
|
||||
register: tfe_md5sum
|
||||
|
||||
- name: assert
|
||||
assert:
|
||||
that:
|
||||
- tfe_md5sum.stdout.find('0f45d2844dbff2edbde44bab0359cead') != -1
|
||||
fail_msg: "FAIL"
|
||||
success_msg: "PASS"
|
||||
Reference in New Issue
Block a user