sshfwd/.ansible/playbook.yml
xuu d315b70011
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is failing
build: add build process
2023-05-29 12:36:14 -06:00

16 lines
301 B
YAML

---
- 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