#!/bin/sh

FLAG=/usr/local/psa/tmp/restart_apache.flag

if [ ! -e "${FLAG}" ]; then
	# only deb/ubt
	/etc/init.d/apache2 restart && touch "${FLAG}"
fi

