@@ -, +, @@ - apply this patch before you build the package - on the test vm/server: -- get letsencrypt via git git clone https://github.com/letsencrypt/letsencrypt -- create a symlink from /usr/bin/letsencrypt to letsencrypt-auto sudo ln -s /path/to/letsencrypt/letsencrypt-auto /usr/bin/letsencrypt --- debian/scripts/koha-create | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/debian/scripts/koha-create +++ a/debian/scripts/koha-create @@ -338,7 +338,11 @@ check_letsencrypt() die "You have to install letsencrypt to use the --letsencrypt parameter." fi else - die "No installation candidate available for package letsencrypt." + echo "No installation candidate available for package letsencrypt." + read -r -p "If you have a symlink from /usr/bin/letsencrypt to letsencrypt-auto, it should work. [y/N] " response + if [[ ! $response =~ ^([yY][eE][sS]|[yY])$ ]]; then + die "You have to install letsencrypt to use the --letsencrypt parameter." + fi fi fi } --