File: pebble-fetch.sh

package info (click to toggle)
python-acme 0.28.0-1~deb9u2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,020 kB
  • sloc: python: 4,054; makefile: 173; sh: 37
file content (41 lines) | stat: -rw-r--r-- 1,040 bytes parent folder | download
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
#!/bin/bash
# Download and run Pebble instance for integration testing
set -xe

PEBBLE_VERSION=2018-11-02

# We reuse the same GOPATH-style directory than for Boulder.
# Pebble does not need it, but it will make the installation consistent with Boulder's one.
export GOPATH=${GOPATH:-$HOME/gopath}
PEBBLEPATH=${PEBBLEPATH:-$GOPATH/src/github.com/letsencrypt/pebble}

mkdir -p ${PEBBLEPATH}

cat << UNLIKELY_EOF > "$PEBBLEPATH/docker-compose.yml"
version: '3'

services:
 pebble:
  image: letsencrypt/pebble:${PEBBLE_VERSION}
  command: pebble -strict ${PEBBLE_STRICT:-false} -dnsserver 10.77.77.1
  ports:
    - 14000:14000
  environment:
    - PEBBLE_VA_NOSLEEP=1
UNLIKELY_EOF

docker-compose -f "$PEBBLEPATH/docker-compose.yml" up -d pebble

set +x  # reduce verbosity while waiting for boulder
for n in `seq 1 150` ; do
  if curl -k https://localhost:14000/dir 2>/dev/null; then
    break
  else
    sleep 1
  fi
done

if ! curl -k https://localhost:14000/dir 2>/dev/null; then
  echo "timed out waiting for pebble to start"
  exit 1
fi