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:
fumingwei
2020-11-23 16:13:50 +06:00
parent 4bb4862173
commit b81f808d78
21 changed files with 57 additions and 21 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"

View 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"