diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-09-04 08:42:46 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-04 08:42:46 +0000 |
| commit | 018537080ce6135d41cd0697cef7c73a4ce372ab (patch) | |
| tree | f08669b93cd139f04c6b7cfd2daf754943efc4d5 /utils | |
| parent | ab4456b0d0f3e495f627311e576df03694e673ad (diff) | |
| parent | 08ac175236e164e09c2633932535d8816bd1f8c4 (diff) | |
Merge pull request #286 from return42/patches-from-allendema
Cherry pick some fixes from @allendema
Diffstat (limited to 'utils')
| -rwxr-xr-x | utils/filtron.sh | 4 | ||||
| -rwxr-xr-x | utils/morty.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/utils/filtron.sh b/utils/filtron.sh index 4e35199ee..83f492407 100755 --- a/utils/filtron.sh +++ b/utils/filtron.sh @@ -207,7 +207,7 @@ install_all() { wait_key echo if ! service_is_available "http://${FILTRON_LISTEN}" ; then - err_msg "Filtron does not listening on: http://${FILTRON_LISTEN}" + err_msg "Filtron is not listening on: http://${FILTRON_LISTEN}" fi if apache_is_installed; then info_msg "Apache is installed on this host." @@ -375,7 +375,7 @@ EOF fi if ! service_is_available "http://${FILTRON_LISTEN}" ; then - err_msg "Filtron does not listening on: http://${FILTRON_LISTEN}" + err_msg "Filtron is not listening on: http://${FILTRON_LISTEN}" fi if service_is_available "http://${FILTRON_TARGET}" ; then 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 |