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': {
|
||||
'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()
|
||||
}
|
||||
},
|
||||
|
|
|
@ -29,8 +29,8 @@ defaults = {
|
|||
'exclude': [
|
||||
'^appdata_',
|
||||
'^updater-',
|
||||
'^nextcloud\.log',
|
||||
'^updater\.log',
|
||||
'^nextcloud\\.log',
|
||||
'^updater\\.log',
|
||||
'^[^/]+/cache',
|
||||
'^[^/]+/files_versions',
|
||||
'^[^/]+/files_trashbin',
|
||||
|
@ -123,9 +123,9 @@ def config(metadata):
|
|||
],
|
||||
'cache_path': '/var/lib/nextcloud/.cache',
|
||||
'upgrade.disable-web': True,
|
||||
'memcache.local': '\OC\Memcache\Redis',
|
||||
'memcache.locking': '\OC\Memcache\Redis',
|
||||
'memcache.distributed': '\OC\Memcache\Redis',
|
||||
'memcache.local': '\\OC\\Memcache\\Redis',
|
||||
'memcache.locking': '\\OC\\Memcache\\Redis',
|
||||
'memcache.distributed': '\\OC\\Memcache\\Redis',
|
||||
'redis': {
|
||||
'host': '/var/run/redis/nextcloud.sock'
|
||||
},
|
||||
|
|
|
@ -4,3 +4,4 @@ PyNaCl
|
|||
PyYAML
|
||||
pyqrcode
|
||||
cache_to_disk
|
||||
setuptools
|
||||
|
|
Loading…
Reference in a new issue