invoiceninja/tasks/installapp.yml
2024-08-22 15:04:11 +02:00

17 lines
481 B
YAML

---
- name: '[Install] - Create app dir'
file:
path: '{{ ninja_app_dir }}'
state: 'directory'
owner: '{{ ninja_app_username }}'
group: '{{ ninja_app_group }}'
- name: "[INSTALL] - Download InvoiceNinja release"
unarchive:
src: "https://github.com/invoiceninja/invoiceninja/releases/download/{{ ninja_version }}/invoiceninja.tar"
dest: "{{ ninja_app_dir }}"
owner: '{{ ninja_app_username }}'
group: '{{ ninja_app_group }}'
remote_src: yes