From 114ac9ab88ddba19eebf417cf8a6dc57ed288c3a Mon Sep 17 00:00:00 2001 From: bosr Date: Sat, 28 Mar 2020 14:41:29 +0100 Subject: [PATCH] Avoid creating a temp directory that starts with a digit, as it breaks several of the `jq -r` commands in `reload-certs.sh`. I discovered that by accident, and it took me quite some time ;) --- Synology-NAS-Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Synology-NAS-Guide.md b/Synology-NAS-Guide.md index 1f1cc2e..542a633 100644 --- a/Synology-NAS-Guide.md +++ b/Synology-NAS-Guide.md @@ -58,7 +58,7 @@ Please note that this will replace your Synology NAS system default certificate This requires the reload-certs.sh script. $ cd /usr/syno/etc/certificate/_archive - $ export CERT_DIR="$(mktemp -d XXXXXX)" + $ export CERT_DIR="$(mktemp -d zXXXXX)" $ export CERT_FOLDER="/usr/syno/etc/certificate/_archive/$CERT_DIR" $ export CERT_DOMAIN="your-domain.tld" $ export CERT_DNS="dns_cf"