Revert "use older boulder version (#5852)" (#5855)

This reverts commit 6b29d159a2.
This commit is contained in:
Brad Warren
2018-04-17 17:17:15 -07:00
committed by ohemorange
parent 5c7fc07ccf
commit a9e01ade4c
+1 -2
View File
@@ -7,11 +7,10 @@ set -xe
export GOPATH=${GOPATH:-$HOME/gopath}
BOULDERPATH=${BOULDERPATH:-$GOPATH/src/github.com/letsencrypt/boulder}
if [ ! -d ${BOULDERPATH} ]; then
git clone https://github.com/letsencrypt/boulder ${BOULDERPATH}
git clone --depth=1 https://github.com/letsencrypt/boulder ${BOULDERPATH}
fi
cd ${BOULDERPATH}
git checkout fa5c9176655d9fa8dfca188de08bd5373aca422f
FAKE_DNS=$(ifconfig docker0 | grep "inet addr:" | cut -d: -f2 | awk '{ print $1}')
[ -z "$FAKE_DNS" ] && FAKE_DNS=$(ifconfig docker0 | grep "inet " | xargs | cut -d ' ' -f 2)
[ -z "$FAKE_DNS" ] && FAKE_DNS=$(ip addr show dev docker0 | grep "inet " | xargs | cut -d ' ' -f 2 | cut -d '/' -f 1)