Fixing typos a minor changes

pull/18/head
schizza 2024-04-28 17:30:54 +02:00
parent be93b490e0
commit 3f1869e6a9
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ function validate_num() {
}
function validate_dest() {
echo "Validating host '$2' ... "
if ping -c 4 2>/dev/null; then
echo "Validating host '$1' ... "
if ping -c 2 $1 >/dev/null 2>&1; then
info "OK"
true
else