sshfwd/.ansible/playbook.yml

16 lines
301 B
YAML
Raw Normal View History

2023-05-29 12:36:14 -06:00
---
- name: Deploy sshFwd
hosts: lavana
tasks:
- name: Copy build to remote
ansible.builtin.copy:
src: sshfwd
dest: /usr/local/bin/sshfwd
owner: root
group: root
- name: Restart service
systemd:
name: sshfwd
enabled: true
state: restarted