更新sapp配置文件模板; 更新pcapng存储程序;

This commit is contained in:
liuxueli
2020-10-16 10:08:11 +08:00
committed by 付明卫
parent a6a13adc07
commit dc050b2e79
10 changed files with 47 additions and 52 deletions

View File

@@ -0,0 +1,29 @@
- name: "copy packet_dump rpm to destination server"
copy:
src: "{{ role_path }}/files/packet_dump-1.0.2.90c24cb-2.el7.x86_64.rpm"
dest: /tmp/ansible_deploy/
- name: "copy packet_dump.service to destination server"
copy:
src: "{{ role_path }}/files/packet_dump.service"
dest: /usr/lib/systemd/system
mode: 0755
- name: "install packet_dump rpm from localhost"
yum:
name:
- /tmp/ansible_deploy/packet_dump-1.0.2.90c24cb-2.el7.x86_64.rpm
state: present
- name: "Template the packet_dump.conf"
template:
src: "{{ role_path }}/templates/packet_dump.conf.j2"
dest: /home/mesasoft/packet_dump/conf/packet_dump.conf
tags: template
- name: "start packet_dump"
systemd:
name: packet_dump.service
enabled: yes
daemon_reload: yes

View File

@@ -0,0 +1,14 @@
[KAFKA]
BROKER_LIST={{ log_kafkabrokers.address }}
[SYSTEM]
NIC_NAME={{ nic_mgr.name }}
LOG_LEVEL={{ packet_dump_log_level }}
LOG_PATH=log/packet_dump
[breakpad]
disable_coredump=0
enable_breakpad=1
breakpad_minidump_dir=/tmp/packet_dump/crashreport
enable_breakpad_upload=0
breakpad_upload_url={{ breakpad_upload }}