From 39effc64e499ea3f24237db558da3e549a9aa641 Mon Sep 17 00:00:00 2001 From: Alex Benya Denisov Date: Thu, 30 Jul 2026 22:52:45 +0300 Subject: [PATCH] fix: select LuCI translations through CONFIG_ALL --- deploy/luci-builder/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/deploy/luci-builder/Dockerfile b/deploy/luci-builder/Dockerfile index 7b7866e..2b70d61 100644 --- a/deploy/luci-builder/Dockerfile +++ b/deploy/luci-builder/Dockerfile @@ -142,9 +142,8 @@ RUN rm -rf tmp/info \ tmp/.packageinfo RUN printf '%s\n' \ + 'CONFIG_ALL=y' \ 'CONFIG_PACKAGE_luci-app-rmm-agent=m' \ - 'CONFIG_LUCI_LANG_ru=y' \ - 'CONFIG_PACKAGE_luci-i18n-rmm-agent-ru=m' \ >> .config \ && make defconfig \ && awk ' \ @@ -161,8 +160,7 @@ RUN printf '%s\n' \ ' .config > .config.packages-pruned \ && mv .config.packages-pruned .config \ && sed -i \ - -e 's/^CONFIG_PACKAGE_luci-app-rmm-agent=y$/CONFIG_PACKAGE_luci-app-rmm-agent=m/' \ - -e 's/^CONFIG_PACKAGE_luci-i18n-rmm-agent-ru=y$/CONFIG_PACKAGE_luci-i18n-rmm-agent-ru=m/' \ + -e 's/^CONFIG_ALL=y$/# CONFIG_ALL is not set/' \ .config \ && grep -q '^CONFIG_PACKAGE_luci-app-rmm-agent=m$' .config \ && grep -q '^CONFIG_PACKAGE_luci-i18n-rmm-agent-ru=m$' .config