From 8ebe7f02456617f851fdb08574a91da2a758dd48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B8=D0=BA=D1=82=D0=BE=D1=80?= <78488229+viktor138irk@users.noreply.github.com> Date: Thu, 7 May 2026 03:31:35 +0900 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=B4=D0=BA=D0=BB=D1=8E=D1=87?= =?UTF-8?q?=D0=B8=D1=82=D1=8C=20=D0=B8=D0=BC=D0=BF=D0=BE=D1=80=D1=82=20?= =?UTF-8?q?=D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=BE=D0=B2=20=D0=B4=D0=B8=D1=81?= =?UTF-8?q?=D0=BA=D0=BE=D0=B2=D1=8B=D1=85=20=D0=BE=D0=B1=D1=80=D0=B0=D0=B7?= =?UTF-8?q?=D0=BE=D0=B2=20=D0=B2=20=D1=83=D1=81=D1=82=D0=B0=D0=BD=D0=BE?= =?UTF-8?q?=D0=B2=D1=89=D0=B8=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/install_web_panel.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/scripts/install_web_panel.sh b/scripts/install_web_panel.sh index 3774b22..28e8000 100644 --- a/scripts/install_web_panel.sh +++ b/scripts/install_web_panel.sh @@ -167,6 +167,16 @@ if [[ -f "${REPO_DIR}/scripts/patch_upload_compat.py" ]]; then else warn "patch_upload_compat.py не найден, совместимость загрузки файлов пропущена" fi +if [[ -f "${REPO_DIR}/scripts/patch_disk_images.py" ]]; then + run_logged "disk images patch применён" python3 "${REPO_DIR}/scripts/patch_disk_images.py" "${APP_DIR}/app.py" +else + warn "patch_disk_images.py не найден, менеджер дисковых образов пропущен" +fi +if [[ -f "${REPO_DIR}/scripts/patch_disk_archives.py" ]]; then + run_logged "disk archive import patch применён" python3 "${REPO_DIR}/scripts/patch_disk_archives.py" "${APP_DIR}/app.py" +else + warn "patch_disk_archives.py не найден, импорт архивов дисков пропущен" +fi if [[ -f "${REPO_DIR}/scripts/patch_dhcp_leases_empty.py" ]]; then run_logged "DHCP leases empty-state patch применён" python3 "${REPO_DIR}/scripts/patch_dhcp_leases_empty.py" "${APP_DIR}/app.py" else