This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
solutions-tsg-scripts/roles/kni/tasks/main.yml
fumingwei 424e66ecdb update to
certstore-2.1.6.20201215.f2e9ba7-1.el7.x86_64.rpm
	kni-20.12.01.13e663f-2.el7.x86_64.rpm
	sapp-4.2.10.d529c6e-2.el7.x86_64.rpm
	ssl-1.0.12.16b8fb5-2.el7.x86_64.rpm
	tfe-4.3.26.17bbb54-1.el7.x86_64.rpm
	tsg_conn_sketch-2.0.11.481c9b1-2.el7.x86_64.rpm
	tsg_master-3.3.12.099a9a4-2.el7.x86_64.rpm
2020-12-15 14:48:40 +06:00

25 lines
559 B
YAML

---
- name: "copy kni to destination server"
copy:
src: "{{ role_path }}/files/"
dest: /tmp/ansible_deploy/
- name: "install kni rpms from localhost"
yum:
name:
- /tmp/ansible_deploy/kni-20.12.01.13e663f-2.el7.x86_64.rpm
state: present
# skip_broken: yes
- name: Template the kni.conf
template:
src: "{{ role_path }}/templates/kni.conf.j2"
dest: /home/mesasoft/sapp_run/etc/kni/kni.conf
tags: template
- name: "enable sapp"
systemd:
name: sapp
enabled: yes
daemon_reload: yes