Fix the loop to make it sh compatible

This commit is contained in:
Grzegorz Kosciolek 2018-08-17 22:43:26 +02:00
parent c155cde276
commit 27ecefec40
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ error() {
parse_domains() {
# For each configuration file in /etc/nginx/conf.d/*.conf*
for conf_file in /etc/nginx/conf.d/*.conf*; do
sed -n -e 's&^\s*ssl_certificate_key\s*\/etc/letsencrypt/live/\(.*\)/privkey.pem;&\1&p' $conf_file | xargs echo | tr ' ' ','
sed -n -e 's&^\s*ssl_certificate_key\s*\/etc/letsencrypt/live/\(.*\)/privkey.pem;&\1&p' $conf_file | xargs echo
done
}