Lines 344-352
check_letsencrypt()
Link Here
|
344 |
fi |
344 |
fi |
345 |
else |
345 |
else |
346 |
echo "No installation candidate available for package letsencrypt." |
346 |
echo "No installation candidate available for package letsencrypt." |
347 |
read -r -p "If you have a symlink from /usr/bin/letsencrypt to letsencrypt-auto, it should work. [y/N] " response |
347 |
if [[ -f /usr/bin/letsencrypt ]]; then |
348 |
if [[ ! $response =~ ^([yY][eE][sS]|[yY])$ ]]; then |
348 |
read -r -p "If you have a symlink from /usr/bin/letsencrypt to letsencrypt-auto, it should work. [y/N] " response |
349 |
die "You have to install letsencrypt to use the --letsencrypt parameter." |
349 |
if [[ ! $response =~ ^([yY][eE][sS]|[yY])$ ]]; then |
|
|
350 |
die "You have to install letsencrypt to use the --letsencrypt parameter." |
351 |
fi |
352 |
else |
353 |
die "You can create a symlink from /usr/bin/letsencrypt to letsencrypt-auto." |
350 |
fi |
354 |
fi |
351 |
fi |
355 |
fi |
352 |
fi |
356 |
fi |
353 |
- |
|
|