Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tester.pkoch-macos_sierra.sh « tools « certbot-dns-route53 - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dbbaa2251d0fb044db5ae926e9f723766e58e9f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
# I just wanted a place to dump the incantations I use for testing.
set -e

brew install openssl libffi

rm -rf scratch; mkdir scratch

virtualenv scratch/venv -p /usr/local/bin/python2.7
scratch/venv/bin/pip install -U pip setuptools

CPPFLAGS=-I/usr/local/opt/openssl/include LDFLAGS=-L/usr/local/opt/openssl/lib scratch/venv/bin/pip install -e .

scratch/venv/bin/certbot certonly -n --agree-tos --test-cert --email pkoch@lifeonmars.pt -a certbot-route53:auth -d pkoch.lifeonmars.pt --work-dir scratch --config-dir scratch --logs-dir scratch

rm -rf scratch