#!/bin/bash

echo waiting for server system to respond

until nc -vzw 2 10.0.0.3 22; do sleep 2; done

echo Server system started



