TSG-7104 - 性能测试 HTTPS 新建时,tsg_stat.log 的 tcp_links speed/s 数值是仪表的 10 倍 TSG-7103 - 功能端的Deny动作支持按会话Rate Limit TSG-7051 - 功能端支持按连接执行ratelimit动作 统一使用tsgconf/main.conf和tsgconf/maat.conf配置文件 更新sapp,更新内容: TSG-6871 - sapp按每个插件的entry统计单包处理延时 TSG-7024 - 采用环境变量文件方式指定SAPP运行环境的Prefix TSG-7110 - sapp调用marsio.so时在代码里写死绝对路径 TSG-7132 - socks,http_proxy等代理层打印日志类型读内存越界 TSG-7167 - EAL4 DerScanner扫描结果中高风险 TSG-7168 - sapp在pcap模式支持按内层ip分流
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
---
|
|
- name: "install firewall packages"
|
|
yum:
|
|
name: "{{ item.value }}"
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
state: present
|
|
download_only: yes
|
|
download_dir: /tmp/rpm_download/
|
|
with_dict: "{{ firewall_rpm_version }}"
|
|
|
|
- name: "Install firwall that are sapp plugins"
|
|
shell: rpm -i /tmp/rpm_download/{{ item.value }}* --prefix {{ sapp.prefix_path }}
|
|
with_dict: "{{ firewall_rpm_version }}"
|
|
|
|
- name: "Template the tsgconf/main.conf"
|
|
template:
|
|
src: "{{ role_path }}/templates/main.conf.j2.j2"
|
|
dest: /opt/tsg/tsg-os-provision/templates/main.conf.j2
|
|
tags: template
|
|
|
|
- name: "Template the tsgconf/maat.conf"
|
|
template:
|
|
src: "{{ role_path }}/templates/maat.conf.j2.j2"
|
|
dest: /opt/tsg/tsg-os-provision/templates/maat.conf.j2
|
|
tags: template
|
|
|
|
- name: "Template the /opt/tsg/sapp/plug/business/tsg_conn_sketch/tsg_conn_sketch.inf"
|
|
template:
|
|
src: "{{ role_path }}/templates/tsg_conn_sketch.inf.j2"
|
|
dest: /opt/tsg/sapp/plug/business/tsg_conn_sketch/tsg_conn_sketch.inf
|
|
tags: template
|
|
|
|
- name: "Template the conf/http/http.conf"
|
|
template:
|
|
src: "{{ role_path }}/templates/http.conf.j2"
|
|
dest: /opt/tsg/sapp/conf/http/http.conf
|
|
tags: template
|
|
|