1

我正在开发一个 bash 脚本,该脚本使用 openconnect 使用 Zenity(最终用户友好)将 VPN 与智能卡或 RSA 令牌连接起来,它会在调用期望生成过程之前提示用户输入所需的变量。除非 RSA 令牌不同步,否则它工作得很好,需要用户输入下一个令牌代码。

有谁知道在开始生成过程后如何成功调用 zenity?我需要使用 zenity 定义一个新变量 ($token) 并将其应用于预期正在处理的脚本。由于它正在请求下一个令牌代码,因此我无法在调用生成过程之前预定义变量。以下是 bash 脚本的一部分。此外,此脚本在后台运行。用户看不到在终端中运行的脚本。

    function rsa() {
    while [ -z "$user" ]; do
      user
      if [[ $? -eq 1 ]]; then
        exit 1
      fi
    done
    while [ -z "$pin" ]; do
      pin
      if [[ $? -eq 1 ]]; then
        exit 1
      elif [ -n "$pin" ]; then
        notify-send -t 10000 "Starting VPN" "Attempting connection to the network."
        expect -c "
          spawn sudo openconnect https://***removed*** -g ***removed*** -u $user --no-dtls --no-cert-check --no-xmlpost 
          expect {
            \"Failed to obtain WebVPN cookie\" {
              puts [exec notify-send -t 10000 \"Connection Unsuccessful\" \"Connection attempt halted.\"]
              exit
              }
            \"Password:\" {
              send $pin\r
              expect {
                \"TOKENCODE:\" {
                  ***need to call zenity and define $token here***
                  send $token\r
                  interact
                  } 
                \"Login failed\" {
                  puts [exec notify-send -t 10000 \"Incorrect PIN\" \"Connection attempt halted.\"]
                  exit
                  } 
                \"Failed to obtain WebVPN cookie\" {
                  puts [exec notify-send -t 10000 \"Connection Unsuccessful\" \"Connection attempt halted.\"]
                  exit
                  }
                \"Connected tun0\" {
                  puts [exec notify-send -t 10000 \"Connection Successful\" \"VPN Connected\"]
                  interact
                  }
                }
              }
            }"
    fi
    done
    exit
    }
4

1 回答 1

0

你不需要使用spawn: 因为 expect 是基于 Tcl 构建的,你可以使用execzenity 来调用:

# the quoting for the --text option looks funny, but Tcl requires that
# the quote appear at the start of a word
# (otherwise a quote is just a regular character)
set status [catch {exec zenity --entry "--text=Enter the current RSA token"} token]

如果用户单击确定,输入的文本将在 $token 中,$status 将为 0。

如果用户单击取消或按 Esc,则 $status 将为 1,并且 $token 包含字符串“子进程异常退出”。据推测,用户不想继续,所以你可以这样做:

if {$status != 0} exit
于 2015-03-26T20:22:54.020 回答