From 10e5f65157bea239298940c661bdaa3175d77be5 Mon Sep 17 00:00:00 2001 From: lgromero Date: Thu, 6 Feb 2025 15:42:23 +0100 Subject: [PATCH] refs #1463 adds read permissions to all users --- installer/ogboot_installer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/installer/ogboot_installer.py b/installer/ogboot_installer.py index c729b9d..290128a 100755 --- a/installer/ogboot_installer.py +++ b/installer/ogboot_installer.py @@ -239,6 +239,8 @@ def og_boot_create_dirs(): else: try: # Crear los directorios necesarios + os.makedirs("/opt/opengnsys", mode=0o775, exist_ok=True) + subprocess.run(["chmod", "775", "/opt/opengnsys"]) os.makedirs(INSTALL_OGBOOT_TARGET, mode=0o775, exist_ok=True) os.makedirs(os.path.join(INSTALL_OGBOOT_TARGET, "client"), mode=0o775, exist_ok=True)