Description
I am trying to use the deploy hook synology_dsm and passing all the required parameters to acme.sh
checking the env, I see that they are all there
SYNO_USE_TEMP_ADMIN=1
SYNO_SCHEME=https
SYNO_HOSTNAME=localhost
SYNO_PORT=5001
SYNO_CREATE=1
SYNO_CERTIFICATE=X-Wildcard
but calling the acme.sh with deploy fails as it cannot find the domain.conf. Isn't it supposed to ignore the domain.conf when the parameters are available in env then create the domain.conf?
sh acme.sh --home /volume1/docker/ssl --deploy -d X-Wildcard --deploy-hook synology_dsm --insecure
acme.sh: line 5864: /volume1/docker/ssl/X-Wildcard/X-Wildcard.conf: No such file or directory
If I create a blank file X-Wildcard.conf in the directory, it works as expected and populates the domain.conf file.
The weird thing is I remember when I was first setting up, it did create the domain.conf but after I mistakenly deleted that file, it failed to run even though the env parameters were still set since everytime I call it, I pass these env.