#!/bin/sh /etc/rc.common
# Copyright (C) 2009 OpenWrt.org

START=90
GATEWAY=/usr/nocatauth/bin/gateway
CONF=/etc/nocat.conf

start() {
	$GATEWAY -f $CONF
}

stop() {
	killall gateway
}