#!/bin/bash
#
# firestarter        Starts the firewall.
#
#
# chkconfig: 345 11 90
# description:  Firestarter is a complete firewall tool for 
# Linux machines. Whether you simply want to protect your 
# personal workstation or you have a network of computers to 
# secure, Firestarter is here to make your life easier. While 
# a Firewall does not guarantee security, it is often the 
# first line of defence against network based attacks.

case $1 in
    start)        firestarter -s
                  ;;

    stop)         firestarter -p
                  ;;
		  
    restart)	  firestarter -p
	          firestarter -s
		  ;;

      *)          echo     "Usage: $0 {start|stop|restart}"
                  ;;                                        
esac
