parent
900d793411
commit
04916f1766
|
@ -491,6 +491,8 @@ def copyClientFiles():
|
||||||
os.makedirs(os.path.join(INSTALL_OGBOOT_TARGET, "client/log"), mode=0o775, exist_ok=True)
|
os.makedirs(os.path.join(INSTALL_OGBOOT_TARGET, "client/log"), mode=0o775, exist_ok=True)
|
||||||
# Creamos el directorio de logs para el samba de oglog
|
# 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)
|
os.makedirs(os.path.join(INSTALL_OGBOOT_TARGET, "client_log"), mode=0o775, exist_ok=True)
|
||||||
|
# Creamos el directorio de cache para el cliente
|
||||||
|
os.makedirs(os.path.join(INSTALL_OGBOOT_TARGET, "client/cache"), mode=0o775, exist_ok=True)
|
||||||
# Change ownership of INSTALL_OGBOOT_TARGET/client/ and its contents
|
# 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/", 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)
|
subprocess.run(f"chown -R opengnsys:opengnsys {INSTALL_OGBOOT_TARGET}/client_log/", shell=True, text=True, capture_output=True)
|
||||||
|
|
Loading…
Reference in New Issue