diff options
Diffstat (limited to 'boot/appc_serv.sh')
-rw-r--r-- | boot/appc_serv.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/boot/appc_serv.sh b/boot/appc_serv.sh index a71db888..6947b9f6 100644 --- a/boot/appc_serv.sh +++ b/boot/appc_serv.sh @@ -8,6 +8,14 @@ # Short-Description: Start daemon at boot time # Description: Enable service provided by daemon. ### END INIT INFO +HTTP_PROXY=$(cat /opt/config/http_proxy.txt) +HTTPS_PROXY=$(cat /opt/config/https_proxy.txt) + +if [ $HTTP_PROXY != "no_proxy" ] +then + export http_proxy=$HTTP_PROXY + export https_proxy=$HTTPS_PROXY +fi dir="/opt" cmd="./appc_vm_init.sh" |