fixed typos as suggested by @jwilk (closes #369)

This commit is contained in:
Lukas Schauer
2017-07-10 16:55:18 +02:00
parent bd57777c62
commit d1f215b652
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ dehydrated is looking for a config file in a few different places, it will use t
- `/etc/dehydrated/config` - `/etc/dehydrated/config`
- `/usr/local/etc/dehydrated/config` - `/usr/local/etc/dehydrated/config`
- The current working directory of your shell - The current working directory of your shell
- The directory from which dehydrated was ran - The directory from which dehydrated was run
Have a look at [docs/examples/config](docs/examples/config) to get started, copy it to e.g. `/etc/dehydrated/config` Have a look at [docs/examples/config](docs/examples/config) to get started, copy it to e.g. `/etc/dehydrated/config`
and edit it to fit your needs. and edit it to fit your needs.
+8 -8
View File
@@ -77,16 +77,16 @@ reset_configvars() {
# verify configuration values # verify configuration values
verify_config() { verify_config() {
[[ "${CHALLENGETYPE}" == "http-01" || "${CHALLENGETYPE}" == "dns-01" ]] || _exiterr "Unknown challenge type ${CHALLENGETYPE}... can not continue." [[ "${CHALLENGETYPE}" == "http-01" || "${CHALLENGETYPE}" == "dns-01" ]] || _exiterr "Unknown challenge type ${CHALLENGETYPE}... cannot continue."
if [[ "${CHALLENGETYPE}" = "dns-01" ]] && [[ -z "${HOOK}" ]]; then if [[ "${CHALLENGETYPE}" = "dns-01" ]] && [[ -z "${HOOK}" ]]; then
_exiterr "Challenge type dns-01 needs a hook script for deployment... can not continue." _exiterr "Challenge type dns-01 needs a hook script for deployment... cannot continue."
fi fi
if [[ "${CHALLENGETYPE}" = "http-01" && ! -d "${WELLKNOWN}" && ! "${COMMAND:-}" = "register" ]]; then if [[ "${CHALLENGETYPE}" = "http-01" && ! -d "${WELLKNOWN}" && ! "${COMMAND:-}" = "register" ]]; then
_exiterr "WELLKNOWN directory doesn't exist, please create ${WELLKNOWN} and set appropriate permissions." _exiterr "WELLKNOWN directory doesn't exist, please create ${WELLKNOWN} and set appropriate permissions."
fi fi
[[ "${KEY_ALGO}" == "rsa" || "${KEY_ALGO}" == "prime256v1" || "${KEY_ALGO}" == "secp384r1" ]] || _exiterr "Unknown public key algorithm ${KEY_ALGO}... can not continue." [[ "${KEY_ALGO}" == "rsa" || "${KEY_ALGO}" == "prime256v1" || "${KEY_ALGO}" == "secp384r1" ]] || _exiterr "Unknown public key algorithm ${KEY_ALGO}... cannot continue."
if [[ -n "${IP_VERSION}" ]]; then if [[ -n "${IP_VERSION}" ]]; then
[[ "${IP_VERSION}" = "4" || "${IP_VERSION}" = "6" ]] || _exiterr "Unknown IP version ${IP_VERSION}... can not continue." [[ "${IP_VERSION}" = "4" || "${IP_VERSION}" = "6" ]] || _exiterr "Unknown IP version ${IP_VERSION}... cannot continue."
fi fi
} }
@@ -262,7 +262,7 @@ init_system() {
register_new_key="yes" register_new_key="yes"
fi fi
fi fi
openssl rsa -in "${ACCOUNT_KEY}" -check 2>/dev/null > /dev/null || _exiterr "Account key is not valid, can not continue." openssl rsa -in "${ACCOUNT_KEY}" -check 2>/dev/null > /dev/null || _exiterr "Account key is not valid, cannot continue."
# Get public components from private key and calculate thumbprint # Get public components from private key and calculate thumbprint
pubExponent64="$(printf '%x' "$(openssl rsa -in "${ACCOUNT_KEY}" -noout -text | awk '/publicExponent/ {print $2}')" | hex2bin | urlbase64)" pubExponent64="$(printf '%x' "$(openssl rsa -in "${ACCOUNT_KEY}" -noout -text | awk '/publicExponent/ {print $2}')" | hex2bin | urlbase64)"
@@ -853,7 +853,7 @@ command_account() {
} }
# Usage: --cron (-c) # Usage: --cron (-c)
# Description: Sign/renew non-existant/changed/expiring certificates. # Description: Sign/renew non-existent/changed/expiring certificates.
command_sign_domains() { command_sign_domains() {
init_system init_system
@@ -1065,7 +1065,7 @@ command_revoke() {
command_cleanup() { command_cleanup() {
load_config load_config
# Create global archive directory if not existant # Create global archive directory if not existent
if [[ ! -e "${BASEDIR}/archive" ]]; then if [[ ! -e "${BASEDIR}/archive" ]]; then
mkdir "${BASEDIR}/archive" mkdir "${BASEDIR}/archive"
fi fi
@@ -1078,7 +1078,7 @@ command_cleanup() {
# Get certificate name # Get certificate name
certname="$(basename "${certdir}")" certname="$(basename "${certdir}")"
# Create certitifaces archive directory if not existant # Create certificates archive directory if not existent
archivedir="${BASEDIR}/archive/${certname}" archivedir="${BASEDIR}/archive/${certname}"
if [[ ! -e "${archivedir}" ]]; then if [[ ! -e "${archivedir}" ]]; then
mkdir "${archivedir}" mkdir "${archivedir}"
+1 -1
View File
@@ -91,7 +91,7 @@ invalid_challenge() {
request_failure() { request_failure() {
local STATUSCODE="${1}" REASON="${2}" REQTYPE="${3}" local STATUSCODE="${1}" REASON="${2}" REQTYPE="${3}"
# This hook is called when a HTTP request fails (e.g., when the ACME # This hook is called when an HTTP request fails (e.g., when the ACME
# server is busy, returns an error, etc). It will be called upon any # server is busy, returns an error, etc). It will be called upon any
# response code that does not start with '2'. Useful to alert admins # response code that does not start with '2'. Useful to alert admins
# about problems with requests. # about problems with requests.