17 lines
481 B
YAML
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
|
|
|