blob: 211a06a3b534ca130fa2d5c48f2ebabee2a0f6bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/sbin/runscript
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# /space/gentoo/cvsroot/gentoo-x86/net-nds/portmap/files/portmap.rc6,v 1.3 2001/12/29 00:22:51 azarah Exp
depend() {
need bootmisc
need net.lo
}
[ -f /etc/power.conf ] && . /etc/power.conf
start() {
ebegin "Starting PMUD"
start-stop-daemon --start --quiet --exec /sbin/pmud -- $PMUD_FLAGS
eend $?
}
stop() {
ebegin "Stopping PMUD"
start-stop-daemon --stop --quiet --exec /sbin/pmud
eend $?
}
|