1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Merge pull request #1709 from holta/calibre-web-0.6.3

IIAB should use Calibre-Web 0.6.3 instead of master branch
This commit is contained in:
A Holt 2019-05-30 20:07:15 -04:00 committed by GitHub
commit 88c0cbd0be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -12,6 +12,8 @@
# All above are set in: github.com/iiab/iiab/blob/master/vars/default_vars.yml
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
calibreweb_version: 0.6.3 # WAS: master
calibreweb_venv_path: /usr/local/calibre-web
calibreweb_exec_path: "{{ calibreweb_venv_path }}/cps.py"

View file

@ -32,9 +32,9 @@
repo: https://github.com/janeczku/calibre-web.git
dest: "{{ calibreweb_venv_path }}"
force: yes
#update: yes
#update: yes # not needed, as Ansible's default is to update
depth: 1
version: master
version: "{{ calibreweb_version }}"
when: internet_available | bool
## Ansible Pip Bug: Cannot use 'chdir' with 'env' https://github.com/ansible/ansible/issues/37912 (Patch landed)