2006-10-04 20:57:49 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2011-11-13 22:15:53 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2006-08-06 11:48:04 +00:00
|
|
|
|
2008-09-03 14:14:19 +00:00
|
|
|
START=19
|
2010-02-09 00:44:30 +00:00
|
|
|
STOP=19
|
|
|
|
|
2006-10-04 20:57:49 +00:00
|
|
|
start() {
|
2011-11-13 22:15:53 +00:00
|
|
|
service_start /usr/sbin/portmap
|
2006-10-04 20:57:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2011-11-13 22:15:53 +00:00
|
|
|
service_stop /usr/sbin/portmap
|
2006-10-04 20:57:49 +00:00
|
|
|
}
|