35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
---
|
|
- name: "Install firwall that are sapp plugins"
|
|
shell: rpm -i /tmp/rpm_download/{{ item.value }}* --prefix {{ prefix_path.sapp }}
|
|
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.j2"
|
|
dest: /opt/tsg/tsg-os-provision/templates/tsg_conn_sketch.inf.j2
|
|
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
|
|
|
|
- name: "Template the conf/quic/main.conf"
|
|
template:
|
|
src: "{{ role_path }}/templates/quic/main.conf.j2"
|
|
dest: /opt/tsg/sapp/conf/quic/main.conf
|
|
tags: template
|