2015-09-27 16:57:31 -04:00
|
|
|
#!/bin/sh -xe
|
2016-04-14 13:20:23 -04:00
|
|
|
# Developer Python3 virtualenv setup for Certbot
|
2015-09-27 16:57:31 -04:00
|
|
|
|
2017-04-20 12:09:20 -04:00
|
|
|
if command -v python3; then
|
|
|
|
|
export VENV_NAME="${VENV_NAME:-venv3}"
|
|
|
|
|
export VENV_ARGS="--python python3"
|
|
|
|
|
else
|
|
|
|
|
echo "Couldn't find python3 in $PATH"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2015-09-27 16:57:31 -04:00
|
|
|
|
2016-02-10 19:38:24 -05:00
|
|
|
./tools/_venv_common.sh \
|
2016-01-10 13:37:41 -05:00
|
|
|
-e acme[dev] \
|
2017-04-20 12:09:20 -04:00
|
|
|
-e .[dev,docs] \
|
|
|
|
|
-e certbot-apache \
|
2017-05-02 13:12:23 -04:00
|
|
|
-e certbot-dns-cloudflare \
|
2017-05-19 19:23:53 -04:00
|
|
|
-e certbot-dns-cloudxns \
|
2017-04-28 17:53:07 -04:00
|
|
|
-e certbot-dns-digitalocean \
|
2017-05-22 20:06:04 -04:00
|
|
|
-e certbot-dns-dnsimple \
|
2017-06-15 19:41:00 -04:00
|
|
|
-e certbot-dns-dnsmadeeasy \
|
2017-05-17 14:26:26 -04:00
|
|
|
-e certbot-dns-google \
|
2017-06-16 17:43:12 -04:00
|
|
|
-e certbot-dns-luadns \
|
2017-05-26 14:24:38 -04:00
|
|
|
-e certbot-dns-nsone \
|
2017-06-06 18:41:04 -04:00
|
|
|
-e certbot-dns-route53 \
|
2017-04-20 12:09:20 -04:00
|
|
|
-e certbot-nginx \
|
|
|
|
|
-e letshelp-certbot \
|
|
|
|
|
-e certbot-compatibility-test
|