VirtualBox

Ignore:
Timestamp:
Jun 19, 2020 5:45:20 AM (5 years ago)
Author:
vboxsync
Message:

bugref:8527. Added proxy settings into the post-installation scripts.

Location:
trunk/src/VBox/Main/UnattendedTemplates
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/UnattendedTemplates/debian_postinstall.sh

    r82968 r84875  
    3131MY_DEBUG="" # "yes"
    3232
     33@@VBOX_COND_HAS_PROXY@@
     34PROXY="@@VBOX_INSERT_PROXY@@"
     35export http_proxy="${PROXY}"
     36export https_proxy="${PROXY}"
     37echo "HTTP proxy is ${http_proxy}" | tee -a "${MY_LOGFILE}"
     38echo "HTTPS proxy is ${https_proxy}" | tee -a "${MY_LOGFILE}"
     39@@VBOX_COND_END@@
    3340
    3441#
  • trunk/src/VBox/Main/UnattendedTemplates/redhat_postinstall.sh

    r82968 r84875  
    2929MY_DEBUG="" # "yes"
    3030
     31@@VBOX_COND_HAS_PROXY@@
     32PROXY="@@VBOX_INSERT_PROXY@@"
     33export http_proxy="${PROXY}"
     34export https_proxy="${PROXY}"
     35echo "HTTP proxy is ${http_proxy}" | tee -a "${MY_LOGFILE}"
     36echo "HTTPS proxy is ${https_proxy}" | tee -a "${MY_LOGFILE}"
     37@@VBOX_COND_END@@
    3138
    3239#
  • trunk/src/VBox/Main/UnattendedTemplates/win_postinstall.cmd

    r82968 r84875  
    3030echo *** Environment END >> %MY_LOG_FILE%
    3131
     32@@VBOX_COND_HAS_PROXY@@
     33set PROXY=@@VBOX_INSERT_PROXY@@
     34set HTTP_PROXY=%PROXY%
     35set HTTPS_PROXY=%PROXY%
     36echo HTTP proxy is %HTTP_PROXY% >> %MY_LOG_FILE%
     37echo HTTPS proxy is %HTTPS_PROXY% >> %MY_LOG_FILE%
     38@@VBOX_COND_END@@
    3239
    3340@@VBOX_COND_IS_INSTALLING_ADDITIONS@@
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette