diff --git a/installer/ogboot_installer.py b/installer/ogboot_installer.py index 14fd224..c8d1277 100755 --- a/installer/ogboot_installer.py +++ b/installer/ogboot_installer.py @@ -491,6 +491,7 @@ def copyClientFiles(): 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) + subprocess.run(f"chown -R opengnsys:opengnsys {INSTALL_OGBOOT_TARGET}/client_log/", shell=True, text=True, capture_output=True) except Exception as e: logger.error(f"Error creating ogAdmClient.cfg: {e}")