#!/bin/sh

# wrapper for restarting webgate
while true; do
	echo "START LOG " $(date +%Y.%m.%d-%H:%M:%S) >> /var/log/webgate.log "UTC"
	/config/bin/webgate >> /var/log/webgate.log
	sleep 10
done

