From ca7408c3a501424efd97ec0fd09568cc992cd1fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=8B=9C=EA=B3=A8=EC=95=BD=EC=82=AC?= Date: Sun, 24 Aug 2025 13:42:48 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix:=20Proxmox=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=20=ED=8C=8C=EC=8B=B1=20=EB=A1=9C=EC=A7=81=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - pveversion 출력에서 올바른 필드()를 사용하도록 수정 - 9.x 버전 감지 정상 동작 확인 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- proxmox-auto-rdp-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxmox-auto-rdp-setup.sh b/proxmox-auto-rdp-setup.sh index b7daf8a..3d961cb 100755 --- a/proxmox-auto-rdp-setup.sh +++ b/proxmox-auto-rdp-setup.sh @@ -54,10 +54,10 @@ check_proxmox_version() { msg_error "Proxmox VE가 설치되어 있지 않습니다." fi - # 버전 정보 추출 (더 안전한 방식) + # 버전 정보 추출 (수정된 방식) local version_info if command -v pveversion > /dev/null 2>&1; then - version_info=$(pveversion 2>/dev/null | head -n1 | awk '{print $2}' 2>/dev/null || echo "unknown") + version_info=$(pveversion 2>/dev/null | head -n1 | awk '{print $1}' | cut -d'/' -f2 2>/dev/null || echo "unknown") else version_info="unknown" fi