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)