#!/bin/sh

# wrapper for restarting webgate
while true; do
	/config/bin/webgate
	sleep 10
done

