Add proxy url/user to summary

This commit is contained in:
William Wernert
2021-04-07 13:54:01 -04:00
parent ec076bba4a
commit 3a4cf8aa26

View File

@@ -449,6 +449,14 @@ whiptail_end_settings() {
__append_end_msg "Management NIC: $MNIC"
__append_end_msg "Management IP: $MAINIP"
if [[ -n $so_proxy ]]; then
__append_end_msg "Proxy:"
__append_end_msg " Server URL: $proxy_addr"
[[ -n $proxy_user ]] && __append_end_msg " User: $proxy_user"
else
__append_end_msg "Proxy: N/A"
fi
if [[ $address_type == 'STATIC' ]]; then
__append_end_msg "Gateway: $MGATEWAY"
__append_end_msg "DNS: $MDNS"