mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
use older boulder version
This commit is contained in:
parent
55c6d0ae7e
commit
a5e2c3e21b
1 changed files with 2 additions and 1 deletions
|
|
@ -7,10 +7,11 @@ set -xe
|
|||
export GOPATH=${GOPATH:-$HOME/gopath}
|
||||
BOULDERPATH=${BOULDERPATH:-$GOPATH/src/github.com/letsencrypt/boulder}
|
||||
if [ ! -d ${BOULDERPATH} ]; then
|
||||
git clone --depth=1 https://github.com/letsencrypt/boulder ${BOULDERPATH}
|
||||
git clone 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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue