blob: 3a925e0adc0c2596a595eb78ea1ffca00ffe0bdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/resmgr/files/resmgrd.rc,v 1.1.1.1 2005/11/30 09:56:56 chriswhite Exp $
depend() {
before cron
need hotplug
}
start() {
ebegin "Starting resource manager"
/sbin/resmgrd -- ${RESMGRD_OPTS}
eend $? "Failed to start the resource manager"
}
stop() {
ebegin "Stopping the resource manager"
/sbin/resmgrd -k
eend $?
}
|