File: 02-proxy-settings

package info (click to toggle)
python-diskimage-builder 3.37.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,572 kB
  • sloc: sh: 7,380; python: 6,444; makefile: 37
file content (74 lines) | stat: -rwxr-xr-x 2,075 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
# Save the HTTP/[S] and noproxy settings if available.
# XXX: Obviously not suitable for downloadable images.

if [ ${DIB_DEBUG_TRACE:-1} -gt 0 ]; then
    set -x
fi
set -eu
set -o pipefail

have_apt=
have_yum=
have_zypper=
http_proxy=${http_proxy:-""}
https_proxy=${https_proxy:-""}

if [ -d /etc/apt ] ; then
    have_apt=1
fi
if [ -e /etc/yum.conf ] ; then
    have_yum=1
fi
if [ -d /etc/zypp ] ; then
    have_zypper=1
fi

if [ -n "$http_proxy" ]; then
    if [ -d ~stack ]; then
        echo export http_proxy=$http_proxy >> ~stack/.profile
    fi
    if [ -n "$have_apt" ] ; then
        echo "Acquire::http::Proxy \"$http_proxy\";"  > /etc/apt/apt.conf.d/02-use-http-proxy
    fi
    if [ -n "$have_yum" ] ; then
        sed -i -e "s,\[main\],[main]\nproxy=$http_proxy," /etc/yum.conf
    fi
    if [ -n "$have_zypper" ] ; then
        sed -i -e "s,^HTTP_PROXY=.*$,HTTP_PROXY=\"$http_proxy\"," /etc/sysconfig/proxy
    fi
fi

if [ -n "$https_proxy" ]; then
    if [ -d ~stack ]; then
        echo export https_proxy=$https_proxy >> ~stack/.profile
    fi
    if [ -n "$have_apt" ] ; then
        echo "Acquire::https::Proxy \"$https_proxy\";"  > /etc/apt/apt.conf.d/02-use-https-proxy
    fi
    if [ -n "$have_zypper" ] ; then
        sed -i -e "s,^HTTPS_PROXY=.*$,HTTPS_PROXY=\"$https_proxy\"," /etc/sysconfig/proxy
    fi
fi

no_proxy=${no_proxy:+"$no_proxy,192.0.2.1"}
no_proxy=${no_proxy:-"192.0.2.1"}
if [ -n "$no_proxy" ]; then
    if [ -d ~stack ]; then
        echo export no_proxy=$no_proxy >> ~stack/.profile
    fi
    if [ -n "$have_apt" ] ; then
        for host in $(sed 's/,/ /g' <<<$no_proxy); do
            echo "Acquire::http::Proxy::$host \"DIRECT\";" >> /etc/apt/apt.conf.d/02-no-proxy
        done
    fi
    if [ -n "$have_zypper" ] ; then
        sed -i -e "s,^\(NO_PROXY=.*\)\"$,\1\, $no_proxy\"," /etc/sysconfig/proxy
    fi
fi

if [ -n "$http_proxy" -o -n "$https_proxy" -o -n "$no_proxy" ]; then
    if [ -n "$have_zypper" ] ; then
        sed -i -e "s,^PROXY_ENABLED=.*$,PROXY_ENABLED=\"yes\"," /etc/sysconfig/proxy
    fi
fi