From 105b0cce76d49e3fa24db0d0bd45d13804c39d40 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 16 Mar 2026 18:35:48 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20DNS=20=E2=80=94=20pou?= =?UTF-8?q?=C5=BEitie=20len=20prv=C3=A9ho=20DNS=20pre=20pct=20create,=20zv?= =?UTF-8?q?y=C5=A1ok=20cez=20resolv.conf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pct create akceptuje len jeden -nameserver parameter bez úvodzoviek. Prvý DNS sa nastaví cez pct, všetky DNS sa nastavia vnútri kontajnera priamo do /etc/resolv.conf. Co-Authored-By: Claude Opus 4.6 (1M context) --- ct/ubuntu.sh | 6 +++++- install/ubuntu-install.sh | 13 +++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/ct/ubuntu.sh b/ct/ubuntu.sh index 0a7660e..d1e4816 100644 --- a/ct/ubuntu.sh +++ b/ct/ubuntu.sh @@ -284,7 +284,10 @@ simple_install() { NET="dhcp" GATE="" fi - NS="-nameserver=${_dns}" + # Proxmox pct: viac DNS oddelených medzerou — použijeme len prvý + local _first_dns + _first_dns=$(echo "$_dns" | awk '{print $1}') + NS="-nameserver=${_first_dns}" DISK_SIZE="$_disk" RAM_SIZE="$_ram" CORE_COUNT="$_cpu" @@ -294,6 +297,7 @@ simple_install() { export SELECTED_USERS export USERS_JSON="$users_json" export CLAUDE_SETUP_URL + export CUSTOM_DNS="$_dns" # --- Nastavenie premenných pre build_container --- CT_TYPE="$var_unprivileged" diff --git a/install/ubuntu-install.sh b/install/ubuntu-install.sh index c6fdd12..3d1dc17 100644 --- a/install/ubuntu-install.sh +++ b/install/ubuntu-install.sh @@ -10,6 +10,19 @@ setting_up_container network_check update_os +# ============================================================================= +# DNS konfigurácia +# ============================================================================= +if [[ -n "${CUSTOM_DNS:-}" ]]; then + msg_info "Nastavujem DNS: ${CUSTOM_DNS}" + # Zapíš všetky DNS servery do resolv.conf + : > /etc/resolv.conf + for dns in $CUSTOM_DNS; do + echo "nameserver $dns" >> /etc/resolv.conf + done + msg_ok "DNS nastavené" +fi + # ============================================================================= # Inštalácia balíčkov # =============================================================================