ev/.ansible/playbook.yml
xuu 7d1b8bcc4c
All checks were successful
continuous-integration/drone/push Build is passing
Add '.ansible/playbook.yml'
2023-05-29 10:28:30 -06:00

17 lines
286 B
YAML

---
- name: Deploy EV
hosts: lavana
tasks:
- name: Copy build to remote
ansible.builtin.copy:
src: ev
dest: /usr/local/bin/ev
owner: root
group: root
- name: Restart service
systemd:
name: ev
enabled: true
state: restarted