mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-02-25 20:04:52 +01:00
fix small issue with certificate profile selection (use key instead of value)
This commit is contained in:
@@ -622,7 +622,7 @@ init_system() {
|
||||
|
||||
# Check if the requested profile is available
|
||||
found_profile="no"
|
||||
for profile in "${available_profiles[@]}"; do
|
||||
for profile in "${!available_profiles[@]}"; do
|
||||
if [[ "${profile}" == "${ACME_PROFILE}" ]]; then
|
||||
found_profile="yes"
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user