summaryrefslogtreecommitdiffstats
path: root/test/ete/labs/gwu/apt-proxy.sh
blob: 7c371ec24ca0f8657721104a6ec5b6a380f7a6a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
sed -i '/#!\/bin\/bash/a\
            mkdir -p /etc/docker\
            cat > /etc/docker/daemon.json <<EOF\
            {\
              "insecure-registries" : ["stack.local.enacct.com:5000"]\
            }\
            EOF\
            cat > /etc/apt/apt.conf.d/30proxy<<EOF\
            Acquire::http { Proxy "http://stack.local.enacct.com:3142"; };\
            Acquire::https::Proxy "DIRECT";\
            EOF\
            apt-get -y update' $1