diff options
author | Freya Murphy <freya@freyacat.org> | 2025-07-31 19:06:04 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-07-31 19:06:04 -0400 |
commit | 7d4a5ba012009305ad681db8e867c80219e0d731 (patch) | |
tree | 08160408b0120b032c08e5b711ac649a417aa981 | |
parent | update cfdns (diff) | |
download | scripts-7d4a5ba012009305ad681db8e867c80219e0d731.tar.gz scripts-7d4a5ba012009305ad681db8e867c80219e0d731.tar.bz2 scripts-7d4a5ba012009305ad681db8e867c80219e0d731.zip |
-rwxr-xr-x | recert | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -131,7 +131,7 @@ fi # Setup 4: get hashes current_hash="" if [ -f "$cert" ]; then - current_hash=$(md5sum "$lets_cert" | cut -f 1 -d " ") + current_hash=$(md5sum "$cert" | cut -f 1 -d " ") else current_hash="FORCE" fi @@ -161,3 +161,4 @@ fi rm "$tmp" exit "$status" + |