Skip to content

Commit 91d0f13

Browse files
authored
Merge pull request srvrco#681 from respencer/fix-heredoc-whitespace
Fix leading whitespace in heredoc so it's uniform
2 parents 4aa9c02 + ee249ab commit 91d0f13

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

getssl

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -895,8 +895,8 @@ copy_file_to_location() { # copies a file, using scp, sftp or ftp if required.
895895
fi
896896
$FTP_COMMAND <<- _EOF
897897
open $ftphost
898-
user $ftpuser $ftppass
899-
$FTP_OPTIONS
898+
user $ftpuser $ftppass
899+
$FTP_OPTIONS
900900
cd $ftpdirn
901901
lcd $fromdir
902902
put ./$fromfile
@@ -1804,7 +1804,7 @@ help_message() { # print out the help message
18041804
-U, --nocheck Do not check if a more recent version is available
18051805
-v --version Display current version of $PROGNAME
18061806
-w working_dir "Working directory"
1807-
--preferred-chain "chain" Use an alternate chain for the certificate
1807+
--preferred-chain "chain" Use an alternate chain for the certificate
18081808
18091809
_EOF_
18101810
}
@@ -2452,7 +2452,7 @@ write_domain_template() { # write out a template file for a domain.
24522452
# where "/path/to/your/website/folder/" is the path, on your web server, to the web root for your domain.
24532453
# You can also user WebDAV over HTTPS as transport mechanism. To do so, start with davs: followed by username,
24542454
# password, host, port (explicitly needed even if using default port 443) and path on the server.
2455-
# Multiple locations can be defined for a file by separating the locations with a semi-colon.
2455+
# Multiple locations can be defined for a file by separating the locations with a semi-colon.
24562456
#ACL=('/var/www/${DOMAIN}/web/.well-known/acme-challenge'
24572457
# 'ssh:server5:/var/www/${DOMAIN}/web/.well-known/acme-challenge'
24582458
# 'ssh:sshuserid@server5:/var/www/${DOMAIN}/web/.well-known/acme-challenge'
@@ -2562,18 +2562,18 @@ write_getssl_template() { # write out the main template file
25622562
#DNS_ADD_COMMAND=
25632563
#DNS_DEL_COMMAND=
25642564
2565-
# Unusual configurations (especially split views) may require these.
2566-
# If you have a mixture, these can go in the per-domain getssl.cfg.
2567-
#
2568-
# If you must use an external DNS Server (e.g. due to split views)
2569-
# Specify it here. Otherwise, the default is to find the zone master.
2570-
# The default will usually work.
2571-
# PUBLIC_DNS_SERVER="8.8.8.8"
2572-
2573-
# If getssl is unable to determine the authoritative nameserver for a domain
2574-
# it will as you to enter AUTH_DNS_SERVER. This is a server that
2575-
# can answer queries for the zone - a master or a slave, not a recursive server.
2576-
# AUTH_DNS_SERVER="10.0.0.14"
2565+
# Unusual configurations (especially split views) may require these.
2566+
# If you have a mixture, these can go in the per-domain getssl.cfg.
2567+
#
2568+
# If you must use an external DNS Server (e.g. due to split views)
2569+
# Specify it here. Otherwise, the default is to find the zone master.
2570+
# The default will usually work.
2571+
# PUBLIC_DNS_SERVER="8.8.8.8"
2572+
2573+
# If getssl is unable to determine the authoritative nameserver for a domain
2574+
# it will as you to enter AUTH_DNS_SERVER. This is a server that
2575+
# can answer queries for the zone - a master or a slave, not a recursive server.
2576+
# AUTH_DNS_SERVER="10.0.0.14"
25772577
_EOF_getssl_
25782578
}
25792579

0 commit comments

Comments
 (0)