mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
Error if no ACME_SERVER_URIt.
This commit is contained in:
parent
66f159c8e4
commit
8232db39fb
1 changed files with 5 additions and 0 deletions
|
|
@ -3,6 +3,11 @@
|
|||
# A hackish script to see if the client is behaving as expected
|
||||
# with each of the "passing" conf files.
|
||||
|
||||
if [ -z "$ACME_SERVER_URI" ]; then
|
||||
echo Please set ACME_SERVER_URI.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
export EA=/etc/apache2/
|
||||
TESTDIR="`dirname $0`"
|
||||
cd $TESTDIR/passing
|
||||
|
|
|
|||
Loading…
Reference in a new issue