From 2c0b6e8123aaa673ead7968b774ba157168e58f5 Mon Sep 17 00:00:00 2001 From: "kihwan.song" Date: Mon, 13 Jul 2026 17:26:37 +0900 Subject: [PATCH] =?UTF-8?q?vpn=20otp-only=20=EB=94=94=EB=B2=84=EA=B7=B8?= =?UTF-8?q?=EB=A5=BC=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EC=A0=84=20=EC=8B=A4?= =?UTF-8?q?=ED=96=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- connect-vpn/action.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/connect-vpn/action.yml b/connect-vpn/action.yml index c49337d..25b56a4 100644 --- a/connect-vpn/action.yml +++ b/connect-vpn/action.yml @@ -217,6 +217,12 @@ runs: head -10 || true } + if [ "$DEBUG_OTP_ONLY" = "true" ]; then + debug_print_otps + echo "debug-otp-only=true 이므로 VPN 로그인 시도 없이 종료합니다." + exit 0 + fi + echo "F5 웹 로그인 시작: ${VPN_HOST} (user=${VPN_USER})" curl_common -L -c "$COOKIE_JAR" "$VPN_HOST/" -o "$WORKDIR/01-login.html" @@ -232,12 +238,6 @@ runs: exit 1 fi - if [ "$DEBUG_OTP_ONLY" = "true" ]; then - debug_print_otps - echo "debug-otp-only=true 이므로 VPN 로그인 시도 없이 종료합니다." - exit 0 - fi - host_no_scheme="${VPN_HOST#https://}" host_no_scheme="${host_no_scheme#http://}" host_no_scheme="${host_no_scheme%%/*}"