- Timestamp:
- 06/08/09 11:19:03 (3 years ago)
- Children:
- 2f0141c49bb55157f24738404aa77367a6a45fed
- Parents:
- 96808c5450804cf9cc6a590500ccce6131c2b937
- git-committer:
- Neutron Soutmun <neo.neutron@…> (06/08/09 11:19:03)
- Files:
-
- 1 modified
-
tools/weblogin-config-update.sh.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tools/weblogin-config-update.sh.in
r71de5a9 r03dc5e3 42 42 NAS_IP_ADDRESS=`get_config_value $SETNAME vserver_ip $file` 43 43 NAS_LOGIN_HOST=`get_config_value $SETNAME vserver_fqdn $file` 44 NAS_LOGIN_PROTO="https" 45 NAS_LOGIN_PORT="443" 44 NAS_LOGIN_PROTO=`get_config_value $SETNAME nas_login_proto $file` 45 test -z "$NAS_LOGIN_PROTO" && NAS_LOGIN_PROTO="https" 46 47 NAS_LOGIN_PORT=`get_config_value $SETNAME nas_login_port $file` 48 if [ -z "$NAS_LOGIN_PORT" ]; then 49 if [ "$NAS_LOGIN_PROTO" = "https" ]; then 50 NAS_LOGIN_PORT="443" 51 else 52 NAS_LOGIN_PORT="80" 53 fi 54 fi 46 55 NAS_PORT=`get_config_value $SETNAME nas_port $file` 47 56 NAS_LOGIN_TITLE=`get_config_value $SETNAME nas_login_title $file`
