mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-11 15:53:21 +02:00
Update to 2024-06-25 15:00
This commit is contained in:
parent
ed84350220
commit
11271c8d3a
@ -11,7 +11,7 @@
|
||||
# MaxUsers = "9"
|
||||
# Mode = "subscription"
|
||||
# etc...
|
||||
seafile_version: "{{ seafile_license is defined | ternary('10.0.9','11.0.9') }}"
|
||||
seafile_version: "{{ seafile_license is defined | ternary('10.0.16','11.0.9') }}"
|
||||
|
||||
# Archive URL and sha256 are only used for the community version
|
||||
seafile_archive_url: https://s3.eu-central-1.amazonaws.com/download.seadrive.org/seafile-server_{{ seafile_version }}_x86-64.tar.gz
|
||||
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:677344c9ec85a95d80f6b4f31d596af0f662b166bfb6beea9f374a6af773c6ce
|
||||
size 205621872
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1342b561365a330939e0832f26deefdd4dca12806cb5f87daa083e18e46398f8
|
||||
size 205519649
|
@ -162,7 +162,15 @@
|
||||
# Needed since CentOS 7.5 so ldaps can be used
|
||||
- name: Remove bundled libs
|
||||
file: path={{ seafile_root_dir }}/seafile-server/seafile/lib/{{ item }} state=absent
|
||||
loop: "{{ seafile_rm_libs[seafile_edition] }}"
|
||||
loop: "{{ seafile_rm_libs.community }}"
|
||||
when: seafile_license is not defined
|
||||
notify: restart seafile
|
||||
tags: seafile
|
||||
|
||||
- name: Remove bundled libs
|
||||
file: path={{ seafile_root_dir }}/seafile-server/seafile/lib/{{ item }} state=absent
|
||||
loop: "{{ seafile_rm_libs.pro }}"
|
||||
when: seafile_license is defined
|
||||
notify: restart seafile
|
||||
tags: seafile
|
||||
|
||||
|
@ -25,42 +25,47 @@ seafile_packages:
|
||||
|
||||
seafile_python_libs:
|
||||
community:
|
||||
- pillow==10.0.*
|
||||
- django==4.2.*
|
||||
- future==0.18.*
|
||||
- mysqlclient==2.1.*
|
||||
- pymysql
|
||||
- pillow==10.2.*
|
||||
- pylibmc
|
||||
- captcha==0.4
|
||||
- captcha==0.5.*
|
||||
- markupsafe==2.0.1
|
||||
- jinja2
|
||||
- SQLAlchemy==2.0.18
|
||||
- sqlalchemy==2.0.18
|
||||
- psd-tools
|
||||
- django-pylibmc
|
||||
- django_simple_captcha==0.5.*
|
||||
- django_simple_captcha==0.6.*
|
||||
- djangosaml2==1.5.*
|
||||
- pysaml2==7.2.*
|
||||
- pycryptodome==3.16.*
|
||||
- cffi==1.15.1
|
||||
- lxml
|
||||
- python-ldap==3.4.3
|
||||
- requests_oauthlib
|
||||
- future==0.18.*
|
||||
- mysqlclient==2.1.*
|
||||
- pycryptodome==3.16.*
|
||||
- cffi==1.15.1
|
||||
- lxml
|
||||
- chardet
|
||||
pro:
|
||||
- pillow==9.3.*
|
||||
- pylibmc
|
||||
- captcha==0.4
|
||||
- jinja2
|
||||
- SQLAlchemy==1.4.3
|
||||
- psd-tools
|
||||
- django-pylibmc
|
||||
- django_simple_captcha==0.5.*
|
||||
- djangosaml2==1.5.*
|
||||
- pysaml2==7.2.*
|
||||
- python-ldap
|
||||
- requests_oauthlib
|
||||
- django==3.2.*
|
||||
- future==0.18.*
|
||||
- mysqlclient==2.1.*
|
||||
- pymysql
|
||||
- pillow==10.2.*
|
||||
- pylibmc
|
||||
- captcha==0.5.*
|
||||
- markupsafe==2.0.1
|
||||
- jinja2
|
||||
- sqlalchemy==1.4.3
|
||||
- psd-tools
|
||||
- django-pylibmc
|
||||
- django_simple_captcha==0.5.20
|
||||
- djangosaml2==1.5.*
|
||||
- pysaml2==7.2.*
|
||||
- pycryptodome==3.16.*
|
||||
- cffi==1.15.1
|
||||
- lxml
|
||||
- requests_oauthlib
|
||||
- chardet
|
||||
|
||||
seafile_rm_libs:
|
||||
|
@ -25,42 +25,47 @@ seafile_packages:
|
||||
|
||||
seafile_python_libs:
|
||||
community:
|
||||
- pillow==10.0.*
|
||||
- django==4.2.*
|
||||
- future==0.18.*
|
||||
- mysqlclient==2.1.*
|
||||
- pymysql
|
||||
- pillow==10.2.*
|
||||
- pylibmc
|
||||
- captcha==0.4
|
||||
- captcha==0.5.*
|
||||
- markupsafe==2.0.1
|
||||
- jinja2
|
||||
- SQLAlchemy==2.0.18
|
||||
- sqlalchemy==2.0.18
|
||||
- psd-tools
|
||||
- django-pylibmc
|
||||
- django_simple_captcha==0.5.*
|
||||
- django_simple_captcha==0.6.*
|
||||
- djangosaml2==1.5.*
|
||||
- pysaml2==7.2.*
|
||||
- pycryptodome==3.16.*
|
||||
- cffi==1.15.1
|
||||
- lxml
|
||||
- python-ldap==3.4.3
|
||||
- requests_oauthlib
|
||||
- future==0.18.*
|
||||
- mysqlclient==2.1.*
|
||||
- pycryptodome==3.16.*
|
||||
- cffi==1.15.1
|
||||
- lxml
|
||||
- chardet
|
||||
pro:
|
||||
- pillow==9.3.*
|
||||
- pylibmc
|
||||
- captcha==0.4
|
||||
- jinja2
|
||||
- SQLAlchemy==1.4.3
|
||||
- psd-tools
|
||||
- django-pylibmc
|
||||
- django_simple_captcha==0.5.*
|
||||
- djangosaml2==1.5.*
|
||||
- pysaml2==7.2.*
|
||||
- python-ldap
|
||||
- requests_oauthlib
|
||||
- django==3.2.*
|
||||
- future==0.18.*
|
||||
- mysqlclient==2.1.*
|
||||
- pymysql
|
||||
- pillow==10.2.*
|
||||
- pylibmc
|
||||
- captcha==0.5.*
|
||||
- markupsafe==2.0.1
|
||||
- jinja2
|
||||
- sqlalchemy==1.4.3
|
||||
- psd-tools
|
||||
- django-pylibmc
|
||||
- django_simple_captcha==0.5.20
|
||||
- djangosaml2==1.5.*
|
||||
- pysaml2==7.2.*
|
||||
- pycryptodome==3.16.*
|
||||
- cffi==1.15.1
|
||||
- lxml
|
||||
- requests_oauthlib
|
||||
- chardet
|
||||
|
||||
seafile_rm_libs:
|
||||
|
Loading…
x
Reference in New Issue
Block a user