2020-10-24 12:08:31 +06:00
|
|
|
---
|
|
|
|
|
- name: "copy firewall rpms to destination server"
|
|
|
|
|
copy:
|
|
|
|
|
src: "{{ role_path }}/files/"
|
|
|
|
|
dest: /tmp/ansible_deploy/
|
|
|
|
|
|
|
|
|
|
- name: "install firewall packages"
|
|
|
|
|
yum:
|
|
|
|
|
name: "{{ fw_packages }}"
|
|
|
|
|
state: present
|
|
|
|
|
skip_broken: yes
|
|
|
|
|
vars:
|
|
|
|
|
fw_packages:
|
2020-12-21 20:37:36 +06:00
|
|
|
- /tmp/ansible_deploy/capture_packet_plug-3.0.6.a2db4a4-2.el7.x86_64.rpm
|
2020-10-24 12:08:31 +06:00
|
|
|
- /tmp/ansible_deploy/conn_telemetry-1.0.2.8d6da43-2.el7.x86_64.rpm
|
|
|
|
|
- /tmp/ansible_deploy/dns-2.0.9.b639626-2.el7.x86_64.rpm
|
|
|
|
|
- /tmp/ansible_deploy/ftp-1.0.8.13d5fda-2.el7.x86_64.rpm
|
|
|
|
|
- /tmp/ansible_deploy/fw_dns_plug-3.0.2.dab58fa-2.el7.x86_64.rpm
|
|
|
|
|
- /tmp/ansible_deploy/fw_ftp_plug-3.0.1.0a78573-2.el7.x86_64.rpm
|
2021-01-14 19:34:36 +06:00
|
|
|
- /tmp/ansible_deploy/fw_http_plug-3.0.4.484b54d-2.el7.x86_64.rpm
|
|
|
|
|
- /tmp/ansible_deploy/fw_mail_plug-3.0.2.7401550-2.el7.x86_64.rpm
|
2020-11-23 09:14:33 +06:00
|
|
|
- /tmp/ansible_deploy/fw_quic_plug-3.0.4.947ef77-2.el7.x86_64.rpm
|
2021-01-14 19:34:36 +06:00
|
|
|
- /tmp/ansible_deploy/fw_ssl_plug-3.0.6.a121701-2.el7.x86_64.rpm
|
2020-10-24 12:08:31 +06:00
|
|
|
- /tmp/ansible_deploy/http-2.0.5.c61ad9a-2.el7.x86_64.rpm
|
|
|
|
|
- /tmp/ansible_deploy/mail-1.0.9.c1d3bde-2.el7.x86_64.rpm
|
2020-12-30 15:03:49 +06:00
|
|
|
- /tmp/ansible_deploy/quic-1.1.17.8c22b4d-2.el7.x86_64.rpm
|
2020-12-15 14:48:40 +06:00
|
|
|
- /tmp/ansible_deploy/ssl-1.0.12.16b8fb5-2.el7.x86_64.rpm
|
2021-01-14 19:34:36 +06:00
|
|
|
- /tmp/ansible_deploy/tsg_conn_sketch-2.0.12.0ad5a3b-2.el7.x86_64.rpm
|
|
|
|
|
- /tmp/ansible_deploy/app_control_plug-1.0.9.97846eb-2.el7.x86_64.rpm
|
2020-10-24 12:08:31 +06:00
|
|
|
|
|
|
|
|
- name: "Template the tsgconf/main.conf"
|
|
|
|
|
template:
|
|
|
|
|
src: "{{ role_path }}/templates/main.conf.j2"
|
|
|
|
|
dest: /home/mesasoft/sapp_run/tsgconf/main.conf
|
|
|
|
|
tags: template
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Template the tsgconf/maat.conf"
|
|
|
|
|
template:
|
|
|
|
|
src: "{{ role_path }}/templates/maat.conf.j2"
|
|
|
|
|
dest: /home/mesasoft/sapp_run/tsgconf/maat.conf
|
|
|
|
|
tags: template
|
|
|
|
|
|
|
|
|
|
- name: "Template the conf/capture_packet_plug.conf.j2"
|
|
|
|
|
template:
|
|
|
|
|
src: "{{ role_path }}/templates/capture_packet_plug.conf.j2"
|
|
|
|
|
dest: /home/mesasoft/sapp_run/conf/capture_packet_plug.conf
|
|
|
|
|
tags: template
|
2020-11-19 09:46:10 +06:00
|
|
|
|
|
|
|
|
- name: "Template the tsgconf/app_l7_proto_id.conf"
|
|
|
|
|
template:
|
|
|
|
|
src: "{{ role_path }}/templates/app_l7_proto_id.conf.j2"
|
|
|
|
|
dest: /home/mesasoft/sapp_run/tsgconf/app_l7_proto_id.conf
|
2020-11-19 18:39:32 +06:00
|
|
|
|
|
|
|
|
- name: "Template the /home/mesasoft/sapp_run/plug/business/tsg_conn_sketch/tsg_conn_sketch.inf"
|
|
|
|
|
template:
|
|
|
|
|
src: "{{ role_path }}/templates/tsg_conn_sketch.inf.j2"
|
|
|
|
|
dest: /home/mesasoft/sapp_run/plug/business/tsg_conn_sketch/tsg_conn_sketch.inf
|
2020-11-20 11:18:49 +06:00
|
|
|
tags: template
|
2020-11-19 18:39:32 +06:00
|
|
|
|