openwrt_archive/net/portmap/files/portmap.init
Nicolas Thill c87cda1ee7 packages/portmap: use new service functions
SVN-Revision: 29063
2011-11-13 22:15:53 +00:00

14 lines
171 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
START=19
STOP=19
start() {
service_start /usr/sbin/portmap
}
stop() {
service_stop /usr/sbin/portmap
}