python 3.12 compat

This commit is contained in:
cronekorkn 2023-10-09 08:58:31 +02:00
parent 1f3740dd59
commit d302a22d3e
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
3 changed files with 7 additions and 6 deletions

View file

@ -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()
} }
}, },

View file

@ -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'
}, },

View file

@ -4,3 +4,4 @@ PyNaCl
PyYAML PyYAML
pyqrcode pyqrcode
cache_to_disk cache_to_disk
setuptools