mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
389 B

#!/bin/sh
#
# ROCK Linux: /etc/rc.d/init.d/mpud
#
# Desc: PowerPC Power Management Unit daemon
# Runlevel: 80 rcX rc2 rc3
#
PMUD_ARGS=""
[ -f /etc/conf/pmud ] && . /etc/conf/pmud
main_begin
block_begin(start, `Starting pmud.')
check(`/sbin/pmud $PMUD_ARGS')
block_end
block_begin(stop, `Stopping pmud.')
check(`killall -15 pmud')
block_end
main_end