#!/bin/bash
host='rmt'
delay='9'
until ping -c 1 -w "${delay}" "${host}"
do
	sleep "${delay}"
done
