#!/bin/bash
#Program:
#	this script is used to start up the apache safedog's configuration monitor.
#History:
#	2011/11/21	lipeng	create

test -x `which sdacm` || exit 1
killall sdacm > /dev/null 2>&1
/usr/bin/sdacm
exit 0
