1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-21 19:01:07 +03:00
Files
certbot/tests/integration/_common.sh
2015-11-01 11:01:23 +00:00

32 lines
798 B
Bash
Executable File

#!/bin/sh
if [ "xxx$root" = "xxx" ];
then
# The -t is required on OS X. It provides a template file path for
# the kernel to use.
root="$(mktemp -d -t leitXXXX)"
echo "Root integration tests directory: $root"
fi
store_flags="--config-dir $root/conf --work-dir $root/work"
store_flags="$store_flags --logs-dir $root/logs"
export root store_flags
letsencrypt_test () {
letsencrypt \
--server "${SERVER:-http://localhost:4000/directory}" \
--no-verify-ssl \
--dvsni-port 5001 \
--http-01-port 5002 \
--manual-test-mode \
$store_flags \
--text \
--no-redirect \
--agree-dev-preview \
--agree-tos \
--email "" \
--renew-by-default \
--debug \
-vvvvvvv \
"$@"
}