This commit is contained in:
SebClem 2023-07-21 13:34:12 +02:00
parent f1a84a51cd
commit cc9bde17dc
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,11 @@
- name: Ensure dolibar folder exist
ansible.builtin.file:
path: "/opt/dolibarr"
owner: "www-data"
group: "www-data"
mode: "755"
state: directory
- name: Download and unzip dolibarr
ansible.builtin.unarchive:
remote_src: true

View File

@ -3,3 +3,7 @@
- name: Install dependencies
ansible.builtin.import_tasks:
file: install-deps.yml
- name: Install dolibarr
ansible.builtin.import_tasks:
file: install.yml