c87cda1ee7
SVN-Revision: 29063
14 lines
171 B
Bash
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
|
|
}
|