From 81af9f5c132b9f07140238b9218407893f4c865e Mon Sep 17 00:00:00 2001 From: Joerg Heinemann Date: Sun, 8 Feb 2026 10:32:42 +0100 Subject: [PATCH] Fix FQDN input prompt in step-ca-install.sh --- install/step-ca-install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install/step-ca-install.sh b/install/step-ca-install.sh index cad8fd8be..993da25d4 100644 --- a/install/step-ca-install.sh +++ b/install/step-ca-install.sh @@ -43,7 +43,6 @@ msg_info "Add a smallstep CA service user - Will only be used by systemd to mana $STD useradd --user-group --system --home $(step path) --shell /bin/false step msg_ok "Created smallstep CA service user" -DeploymentType="standalone" DeploymentType="standalone" FQDN=$(hostname -f) DomainName=$(hostname -d) @@ -242,7 +241,7 @@ PROVISIONER_PASSWORD=$(step path)/encryption//provisioner.pwd while true; do -FQDN=$(whiptail --title "step ca certificate options" --inputbox 'FQDN (e.g. MyLXC.example.com)' 10 50 "$FQDN" 3>&1 1>&2 2>&3) +FQDN=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "step ca certificate options" --inputbox 'FQDN (e.g. MyLXC.example.com)' 10 50 "$FQDN" 3>&1 1>&2 2>&3) IP=$(dig +short $FQDN) if [[ -z "$IP" ]]; then echo "Resolution failed for $FQDN"