#!/bin/sh

# Wrapper script to run firewall-easy from its installed location

case "$1" in 
	start)
		/usr/lib/firewall-easy/firewall
	;;
	stop) 
		/usr/lib/firewall-easy/firewall-stop
	;;
	*) 
		echo "Usage $0 ( start | stop )"
		exit 1
	;;
esac


exit 0
