1
0
This repository has been archived on 2025-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
openwrt_archive/net/nocatauth/files/nocatauth-gateway
Andy Boyett 927bf1585b [packages] add nocatauth, thanks Russell Senior
SVN-Revision: 16610
2009-06-28 20:37:56 +00:00

15 lines
185 B
Bash
Executable File

#!/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
}