Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jan 8, 2024
1 parent 7c85d5e commit 5b36957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/letsencrypt_authenticator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fi
old_serial=$(grep serial $zone_file | awk '{print $1}' | tr -cd '[:alnum:][_\-]')
new_serial=$((old_serial+1))
old_challenge=$(grep _acme-challenge $zone_file | awk '{print $4}' | head -n 1 | tr -cd '[:alnum:][_\-]')
new_challenge="\"$CERTBOT_VALIDATION\""
new_challenge="$CERTBOT_VALIDATION"
$verbose && echo "old serial : $old_serial"
$verbose && echo "new serial : $new_serial"
$verbose && echo "old challenge : $old_challenge"
Expand Down

0 comments on commit 5b36957

Please sign in to comment.