Skip to content
Snippets Groups Projects

feat: Add runtime config for ssh proxy

Files
3
+ 13
0
 
---
 
- name: Configure sshpiper yaml plugin
 
ansible.builtin.template:
 
src: sshpiperd.yaml.j2
 
dest: "{{ sshpiper_dest_dir }}/sshpiperd.yaml"
 
backup: true
 
 
- name: Enable and start sshpiper service
 
ansible.builtin.service:
 
name: sshpiperd
 
enabled: true
 
state: started
 
Loading