diff --git a/nextcloud-startup-script.sh b/nextcloud-startup-script.sh index 18b46d31..72ff963f 100644 --- a/nextcloud-startup-script.sh +++ b/nextcloud-startup-script.sh @@ -46,7 +46,7 @@ NCDB=1 && FIRST_IFACE=1 source /var/scripts/lib.sh unset NCDB unset FIRST_IFACE # If we have internet, then use the latest variables from the lib remote file -elif print_text_in_color "$ICyan" "Testing internet connection..." && ping github.com -c 2 +elif printf "Testing internet connection..." && ping github.com -c 2 then true # shellcheck source=lib.sh diff --git a/static/server_configuration.sh b/static/server_configuration.sh index 83710419..a2c816dc 100644 --- a/static/server_configuration.sh +++ b/static/server_configuration.sh @@ -10,7 +10,7 @@ true # shellcheck source=lib.sh source /var/scripts/lib.sh # If we have internet, then use the latest variables from the lib remote file -elif print_text_in_color "$ICyan" "Testing internet connection..." && ping github.com -c 2 +elif printf "Testing internet connection..." && ping github.com -c 2 then # shellcheck disable=2034,2059 true diff --git a/static/static_ip.sh b/static/static_ip.sh index 9f27b442..d69644a2 100644 --- a/static/static_ip.sh +++ b/static/static_ip.sh @@ -18,7 +18,7 @@ true FIRST_IFACE=1 source /var/scripts/lib.sh unset FIRST_IFACE # If we have internet, then use the latest variables from the lib remote file -elif print_text_in_color "$ICyan" "Testing internet connection..." && ping github.com -c 2 +elif printf "Testing internet connection..." && ping github.com -c 2 then # shellcheck disable=2034,2059 true