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
|
|
with_dict: "{{ firewall_rpm_version }}"
|
|
|
|
- name: "Template the tsgconf/main.conf"
|
|
template:
|
|
src: "{{ role_path }}/templates/main.conf.j2.j2"
|
|
dest: /opt/tsg/init_runtime/templates/main.conf.j2
|
|
tags: template
|
|
|
|
|
|
- name: "Template the tsgconf/maat.conf"
|
|
template:
|
|
src: "{{ role_path }}/templates/maat.conf.j2.j2"
|
|
dest: /opt/tsg/init_runtime/templates/maat.conf.j2
|
|
tags: template
|
|
|
|
- name: "Template the conf/capture_packet_plug.conf.j2"
|
|
template:
|
|
src: "{{ role_path }}/templates/capture_packet_plug.conf.j2.j2"
|
|
dest: /opt/tsg/init_runtime/templates/capture_packet_plug.conf.j2
|
|
tags: template
|
|
|
|
- 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
|
|
|
|
- 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
|
|
tags: template
|
|
|