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

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual-http-auth.sh')
-rwxr-xr-xtests/manual-http-auth.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/manual-http-auth.sh b/tests/manual-http-auth.sh
deleted file mode 100755
index 48c33f04b..000000000
--- a/tests/manual-http-auth.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-uri_path=".well-known/acme-challenge/$CERTBOT_TOKEN"
-
-# This script should be run from the top level. e.g. ./tests/manual-http-auth.sh
-source_dir="$(pwd)"
-cd $(mktemp -d)
-mkdir -p $(dirname $uri_path)
-echo $CERTBOT_VALIDATION > $uri_path
-python "$source_dir/tests/run_http_server.py" $http_01_port >/dev/null 2>&1 &
-server_pid=$!
-while ! curl "http://localhost:$http_01_port/$uri_path" >/dev/null 2>&1; do
- sleep 1s
-done
-echo $server_pid