From 7098a455c3dff5a52fd443325daece0e1a07dcd4 Mon Sep 17 00:00:00 2001 From: simonmicro Date: Sat, 8 Nov 2025 13:08:00 +0100 Subject: [PATCH] Typo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- docker/entrypoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/entrypoint.py b/docker/entrypoint.py index 80fb347..0323a85 100755 --- a/docker/entrypoint.py +++ b/docker/entrypoint.py @@ -28,7 +28,7 @@ def change_uid_grp(logger): os.chmod("/home/py-kms", 0o700) os.chmod("/usr/bin/start.py", 0o555) # allow execution by non-root users if os.path.isdir(dbPath): - # Corret permissions recursively, as to access the database file, also its parent folder must be accessible + # Correct permissions recursively, as to access the database file, also its parent folder must be accessible logger.debug(f'Correcting owner permissions on {dbPath}') os.chown(dbPath, new_uid, new_gid) os.chmod(dbPath, 0o700) # executable bit on dirs to allow interaction