diff options
author | Allen <64094914+allendema@users.noreply.github.com> | 2021-09-02 12:46:57 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-09-04 10:22:52 +0200 |
commit | 08ac175236e164e09c2633932535d8816bd1f8c4 (patch) | |
tree | f08669b93cd139f04c6b7cfd2daf754943efc4d5 /utils/morty.sh | |
parent | a5a0a4e10674f39a5936351af259b626e9b0298e (diff) | |
download | searxng-08ac175236e164e09c2633932535d8816bd1f8c4.tar.gz searxng-08ac175236e164e09c2633932535d8816bd1f8c4.zip |
[fix] Wording for Morty & Filtron error message
Diffstat (limited to 'utils/morty.sh')
-rwxr-xr-x | utils/morty.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/morty.sh b/utils/morty.sh index 8be0e6ba6..c39568677 100755 --- a/utils/morty.sh +++ b/utils/morty.sh @@ -221,7 +221,7 @@ install_all() { systemd_install_service "${SERVICE_NAME}" "${SERVICE_SYSTEMD_UNIT}" wait_key if ! service_is_available "http://${MORTY_LISTEN}" ; then - err_msg "Morty does not listening on: http://${MORTY_LISTEN}" + err_msg "Morty is not listening on: http://${MORTY_LISTEN}" fi if apache_is_installed; then info_msg "Apache is installed on this host." @@ -359,7 +359,7 @@ EOF fi if ! service_is_available "http://${MORTY_LISTEN}" ; then - err_msg "Morty does not listening on: http://${MORTY_LISTEN}" + err_msg "Morty is not listening on: http://${MORTY_LISTEN}" echo -e "${_Green}stop with [${_BCyan}CTRL-C${_Green}] or .." wait_key fi |