2015-09-27 16:57:31 -04:00
|
|
|
#!/bin/sh -xe
|
2016-04-14 13:20:23 -04:00
|
|
|
# Developer virtualenv setup for Certbot client
|
2015-09-27 16:57:31 -04:00
|
|
|
|
2016-04-15 15:40:37 -04:00
|
|
|
if command -v python2; then
|
|
|
|
|
export VENV_ARGS="--python python2"
|
|
|
|
|
elif command -v python2.7; then
|
|
|
|
|
export VENV_ARGS="--python python2.7"
|
|
|
|
|
else
|
|
|
|
|
echo "Couldn't find python2 or python2.7 in $PATH"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2015-10-06 13:49:33 -04:00
|
|
|
|
2016-02-10 22:09:05 -05:00
|
|
|
./tools/_venv_common.sh \
|
2016-01-10 13:37:41 -05:00
|
|
|
-e acme[dev] \
|
|
|
|
|
-e .[dev,docs] \
|
2016-04-13 20:42:19 -04:00
|
|
|
-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-16 19:53:46 -04:00
|
|
|
-e certbot-dns-rfc2136 \
|
2017-06-06 18:41:04 -04:00
|
|
|
-e certbot-dns-route53 \
|
2016-04-13 20:42:19 -04:00
|
|
|
-e certbot-nginx \
|
2017-08-24 19:08:47 -04:00
|
|
|
-e certbot-postfix \
|
2016-04-13 20:42:19 -04:00
|
|
|
-e letshelp-certbot \
|
|
|
|
|
-e certbot-compatibility-test
|