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.
+3 -3
View File
@@ -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.