File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -263,7 +263,6 @@ if [ -f "${CONFIG_FILE}" ] && shyaml -q get-value certificates < "${CONFIG_FILE}
263
263
continue
264
264
fi
265
265
debug " Certificate domains are is: ${domains[*]} "
266
-
267
266
# Assemble the list of domains to be included in the request.
268
267
read -ra alt_names < <( assemble_alt_names " ${domains[@]} " )
269
268
# Hand over all the info required for the certificate request, and
@@ -280,10 +279,9 @@ else
280
279
for conf_file in /etc/nginx/conf.d/* .conf* ; do
281
280
parse_config_file " ${conf_file} " certificates
282
281
done
283
-
284
282
# Iterate over each key and create a signed certificate for them.
285
283
for cert_name in " ${! certificates[@]} " ; do
286
- server_names=(" ${certificates["$cert_name"]} " )
284
+ server_names=(${certificates["$cert_name"]} )
287
285
# Assemble the list of domains to be included in the request.
288
286
read -ra alt_names < <( assemble_alt_names " ${server_names[@]} " )
289
287
# Hand over all the info required for the certificate request, and
You can’t perform that action at this time.
0 commit comments