#!/sbin/runscript start() { ebegin "Starting firewall" if [ -e /etc/conf.d/firewall.start ] then source /etc/conf.d/firewall.start fi eend $? "Failed to start firewal." } stop() { ebegin "Stopping firewall" # to /etc/conf.d/firewall.stop if [ -e /etc/conf.d/firewall.stop ] then source /etc/conf.d/firewall.stop fi eend $? "Failed to stop firewall." }