Fix challenge (#157)

* fix spell

* Update config.json
This commit is contained in:
Pascal Vizeli
2017-07-29 13:49:45 +02:00
committed by GitHub
parent 47ec1579d8
commit 2bc19cefb5
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "Let's Encrypt",
"version": "1.1",
"version": "1.2",
"slug": "letsencrypt",
"description": "Manage Let's Encrypt certificate",
"url": "https://home-assistant.io/addons/lets_encrypt/",

View File

@@ -5,7 +5,7 @@ CERT_DIR=/data/letsencrypt
WORK_DIR=/data/workdir
CONFIG_PATH=/data/options.json
CHALLENGE=$(jq --raw-output ".email" $CONFIG_PATH)
CHALLENGE=$(jq --raw-output ".challenge" $CONFIG_PATH)
EMAIL=$(jq --raw-output ".email" $CONFIG_PATH)
DOMAINS=$(jq --raw-output ".domains[]" $CONFIG_PATH)
KEYFILE=$(jq --raw-output ".keyfile" $CONFIG_PATH)