diff --git a/installer/ogboot_installer.py b/installer/ogboot_installer.py index 9b7f55f..4717aa3 100755 --- a/installer/ogboot_installer.py +++ b/installer/ogboot_installer.py @@ -487,6 +487,8 @@ def copyClientFiles(): logger.info("Configuration file ogAdmClient.cfg created successfully.") # Creamos el directorio de images para el samba de ogrepository os.makedirs(os.path.join(INSTALL_OGBOOT_TARGET, "client/images"), mode=0o775, exist_ok=True) + # Creamos el directorio de logs para el samba de oglog + os.makedirs(os.path.join(INSTALL_OGBOOT_TARGET, "client/log"), mode=0o775, exist_ok=True) # Change ownership of INSTALL_OGBOOT_TARGET/client/ and its contents subprocess.run(f"chown -R opengnsys:opengnsys {INSTALL_OGBOOT_TARGET}/client/", shell=True, text=True, capture_output=True)