python 3.12 compat
This commit is contained in:
parent
1f3740dd59
commit
d302a22d3e
3 changed files with 7 additions and 6 deletions
|
@ -18,7 +18,7 @@ def ssh_keys(metadata):
|
||||||
},
|
},
|
||||||
'sudoers': {
|
'sudoers': {
|
||||||
'build-ci': {
|
'build-ci': {
|
||||||
f"/usr/bin/chown -R build-ci\:{quote(ci['group'])} {quote(ci['path'])}"
|
f"/usr/bin/chown -R build-ci\\:{quote(ci['group'])} {quote(ci['path'])}"
|
||||||
for ci in metadata.get('build-ci').values()
|
for ci in metadata.get('build-ci').values()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -29,8 +29,8 @@ defaults = {
|
||||||
'exclude': [
|
'exclude': [
|
||||||
'^appdata_',
|
'^appdata_',
|
||||||
'^updater-',
|
'^updater-',
|
||||||
'^nextcloud\.log',
|
'^nextcloud\\.log',
|
||||||
'^updater\.log',
|
'^updater\\.log',
|
||||||
'^[^/]+/cache',
|
'^[^/]+/cache',
|
||||||
'^[^/]+/files_versions',
|
'^[^/]+/files_versions',
|
||||||
'^[^/]+/files_trashbin',
|
'^[^/]+/files_trashbin',
|
||||||
|
@ -123,9 +123,9 @@ def config(metadata):
|
||||||
],
|
],
|
||||||
'cache_path': '/var/lib/nextcloud/.cache',
|
'cache_path': '/var/lib/nextcloud/.cache',
|
||||||
'upgrade.disable-web': True,
|
'upgrade.disable-web': True,
|
||||||
'memcache.local': '\OC\Memcache\Redis',
|
'memcache.local': '\\OC\\Memcache\\Redis',
|
||||||
'memcache.locking': '\OC\Memcache\Redis',
|
'memcache.locking': '\\OC\\Memcache\\Redis',
|
||||||
'memcache.distributed': '\OC\Memcache\Redis',
|
'memcache.distributed': '\\OC\\Memcache\\Redis',
|
||||||
'redis': {
|
'redis': {
|
||||||
'host': '/var/run/redis/nextcloud.sock'
|
'host': '/var/run/redis/nextcloud.sock'
|
||||||
},
|
},
|
||||||
|
|
|
@ -4,3 +4,4 @@ PyNaCl
|
||||||
PyYAML
|
PyYAML
|
||||||
pyqrcode
|
pyqrcode
|
||||||
cache_to_disk
|
cache_to_disk
|
||||||
|
setuptools
|
||||||
|
|
Loading…
Reference in a new issue