summaryrefslogtreecommitdiff
path: root/tools/ci/scripts/updaterepos.sh
blob: 75d2e2eff8abb4ae6370580c434c4aed3cae6b61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash

if [[ ${CI_RUNNER_ID} != "" ]];
then
    echo "Running from shell. Skipping update repos"
    exit 0
fi
export DATA=$(cat /etc/resolv.conf|grep "nameserver 1.10.100.101")
echo "${DATA}"
if [ "$DATA" != "" ]; then
    echo "Detected local runner"
    sed -i 's!http://httpredir.debian.org/debian!http://1.10.100.103/debian!' /etc/apt/sources.list || true
    sed -i 's!http://deb.debian.org/debian!http://1.10.100.103/debian!' /etc/apt/sources.list || true
fi