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
17 lines
368 B
YAML
17 lines
368 B
YAML
- 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"
|