blob: 858c48be7e998710b21d0563b3e7378f0e94d092 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
sed -i '/#!\/bin\/bash/a\
# sleep up to 3 minutes to avoid disk contention\
sleep $((RANDOM / 200))\
mkdir -p /etc/docker\
cat > /etc/docker/daemon.json <<EOF\
{\
"insecure-registries" : ["docker-proxy.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
|