#!/bin/sh

if [ "$1" == "start" ]; then
	echo "Starting WE System Daemon"
	/usr/sbin/wesysd
fi

if [ "$1" == "stop" ]; then
	killall wesysd
fi

