htz-cloud.sewfile: update to debian bullseye
This commit is contained in:
parent
b955633a23
commit
0db4c19457
3 changed files with 35 additions and 2 deletions
|
@ -32,10 +32,42 @@ files = {
|
||||||
}
|
}
|
||||||
|
|
||||||
svc_systemd = {
|
svc_systemd = {
|
||||||
'seafile': {},
|
'seafile': {
|
||||||
|
'needs': {
|
||||||
|
'pkg_pip:',
|
||||||
|
},
|
||||||
|
},
|
||||||
'seahub': {
|
'seahub': {
|
||||||
'needs': {
|
'needs': {
|
||||||
'svc_systemd:seafile',
|
'svc_systemd:seafile',
|
||||||
|
'pkg_pip:',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for pkg in (
|
||||||
|
'django==3.2.19',
|
||||||
|
'future==0.18.3',
|
||||||
|
'mysqlclient==2.1.1',
|
||||||
|
'pymysql',
|
||||||
|
'pillow==9.3.0',
|
||||||
|
'pylibmc',
|
||||||
|
'captcha==0.4',
|
||||||
|
'markupsafe==2.0.1',
|
||||||
|
'jinja2',
|
||||||
|
'sqlalchemy==1.4.3',
|
||||||
|
'psd-tools',
|
||||||
|
'django-pylibmc',
|
||||||
|
'django_simple_captcha==0.5.17',
|
||||||
|
'djangosaml2==1.5.7',
|
||||||
|
'pysaml2==7.2.1',
|
||||||
|
'pycryptodome==3.16.0',
|
||||||
|
'cffi==1.15.1',
|
||||||
|
'lxml',
|
||||||
|
):
|
||||||
|
if '==' in pkg:
|
||||||
|
pkg, version = pkg.split('==', 1)
|
||||||
|
else:
|
||||||
|
version = None
|
||||||
|
|
||||||
|
pkg_pip[pkg.replace('_', '-')] = {'version': version}
|
||||||
|
|
|
@ -5,6 +5,7 @@ defaults = {
|
||||||
'python3': {},
|
'python3': {},
|
||||||
'python3-setuptools': {},
|
'python3-setuptools': {},
|
||||||
'python3-pip': {},
|
'python3-pip': {},
|
||||||
|
'default-libmysqlclient-dev': {},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'backups': {
|
'backups': {
|
||||||
|
|
|
@ -7,7 +7,7 @@ nodes['htz-cloud.sewfile'] = {
|
||||||
'zfs',
|
'zfs',
|
||||||
},
|
},
|
||||||
'groups': {
|
'groups': {
|
||||||
'debian-buster',
|
'debian-bullseye',
|
||||||
'webserver',
|
'webserver',
|
||||||
},
|
},
|
||||||
'metadata': {
|
'metadata': {
|
||||||
|
|
Loading…
Reference in a new issue