22 lines
393 B
YAML
22 lines
393 B
YAML
---
|
|
|
|
- name: install garage
|
|
get_url:
|
|
url: "{{ garage_url }}"
|
|
dest: "{{ garage_bin }}"
|
|
owner: root
|
|
group: root
|
|
mode: 0755
|
|
|
|
- name: install garage systemd file
|
|
template:
|
|
src: garage.service.j2
|
|
dest: /etc/systemd/system/garage.service
|
|
|
|
- name: put garage.toml conf file
|
|
template:
|
|
src: garage.toml.j2
|
|
dest: /etc/garage.toml
|
|
notify:
|
|
- restart garage
|