This commit is contained in:
2025-10-16 15:06:50 +09:00
parent 2fcca115d6
commit 230ea0890d
11 changed files with 1587 additions and 145 deletions

View File

@@ -25,6 +25,7 @@ INSTANCE_DIR.mkdir(parents=True, exist_ok=True)
(DATA_DIR / "idrac_info").mkdir(parents=True, exist_ok=True)
(DATA_DIR / "mac").mkdir(parents=True, exist_ok=True)
(DATA_DIR / "guid_file").mkdir(parents=True, exist_ok=True)
(DATA_DIR / "gpu_serial").mkdir(parents=True, exist_ok=True)
(DATA_DIR / "mac_backup").mkdir(parents=True, exist_ok=True)
(DATA_DIR / "server_list").mkdir(parents=True, exist_ok=True)
(DATA_DIR / "temp_ip").mkdir(parents=True, exist_ok=True)
@@ -57,6 +58,7 @@ class Config:
IDRAC_INFO_FOLDER = (DATA_DIR / "idrac_info").as_posix()
MAC_FOLDER = (DATA_DIR / "mac").as_posix()
GUID_FOLDER = (DATA_DIR / "guid_file").as_posix()
GPU_FOLDER = (DATA_DIR / "gpu_serial").as_posix()
MAC_BACKUP_FOLDER = (DATA_DIR / "mac_backup").as_posix()
SERVER_LIST_FOLDER = (DATA_DIR / "server_list").as_posix()
LOG_FOLDER = (DATA_DIR / "logs").as_posix()