make it work on 21.05

This commit is contained in:
2021-12-06 14:56:56 +01:00
parent 1cbd649a78
commit 85722d6239
6 changed files with 1321 additions and 1996 deletions

View File

@@ -13,7 +13,6 @@
- name: install memcached
import_tasks: memcached.yml
tags: wip
- name: create koha user
vars:
@@ -32,11 +31,11 @@
- name: get and extract archive
block:
- get_url:
url: "https://github.com/Koha-Community/Koha/archive/refs/tags/v{{ koha_version }}.tar.gz"
url: "https://gitlab.com/koha-community/Koha/-/archive/v{{ koha_version }}/Koha-v{{ koha_version }}.tar.gz"
dest: /tmp/
- unarchive:
src: /tmp/Koha-{{ koha_version }}.tar.gz
src: /tmp/Koha-v{{ koha_version }}.tar.gz
remote_src: yes
dest: "{{ koha_home_dir }}"