瀏覽代碼

check for unset variable correctly

Girish Ramakrishnan 9 年之前
父節點
當前提交
2f8df19cfe
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      start.sh

+ 1 - 1
start.sh

@@ -23,7 +23,7 @@ setup_ldap_source() {
 
 # SSH_PORT can be unset to disable SSH
 disable_ssh="false"
-if [[ -z "${SSH_PORT}" ]]; then
+if [[ -z "${SSH_PORT:-}" ]]; then
     echo "SSH disabled"
     SSH_PORT=29418 # arbitrary port to keep sshd happy
     disable_ssh="false"