go-paste/.ansible/playbook.yml

26 lines
536 B
YAML
Raw Normal View History

2023-10-13 11:29:51 -06:00
---
- name: Deploy EV
hosts: kapha
tasks:
- name: Copy build to remote
ansible.builtin.copy:
src: ../build/sour.is-paste
dest: /usr/local/bin/sour.is-paste
owner: root
group: root
- name: Copy build to remote
ansible.builtin.copy:
src: sour.is-paste.service
dest: /etc/systemd/system/sour.is-paste.service
owner: root
group: root
- name: Restart service
systemd:
name: sour.is-paste
enabled: true
daemon_reload: true
state: restarted