46 lines
1 KiB
Text
46 lines
1 KiB
Text
#!/sbin/runscript
|
|
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/open-mx/files/omxoed.initd,v 1.1 2011/08/31 18:34:14 alexxy Exp $
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
checksystem() {
|
|
if [ -c /dev/open-mx ]; then
|
|
einfo "Open-MX module already loaded"
|
|
return 0
|
|
else
|
|
einfo "Checking if Open-MX module present"
|
|
if [ "x$(modprobe -l open-mx | grep open-mx)" == "x" ]; then
|
|
eerror "open-mx not found!"
|
|
return 1
|
|
fi
|
|
fi
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting ${SVCNAME}"
|
|
checksystem || return 1
|
|
if [ ! -c /dev/open-mx ]; then
|
|
ebegin "Loading open-mx module"
|
|
modprobe -q open-mx
|
|
fi
|
|
start-stop-daemon --start --exec /usr/bin/omxoed \
|
|
--background --make-pidfile \
|
|
--pidfile /var/run/omeoed.pid
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping ${SVCNAME}"
|
|
start-stop-daemon --stop --exec /usr/bin/omxoed \
|
|
--pidfile /var/run/omeoed.pid
|
|
eend $?
|
|
}
|
|
|
|
status() {
|
|
ebegin "Showing current active Open-MX peers"
|
|
omx_info -q
|
|
}
|