#!/bin/bash
# connects-keep-up: keep up the ssh connections
s=60
. opts
while true; do
	if [ `pidof ssh | wc -w` -lt 3 ]; then
		v connects
	fi
	v sleep $s
done
