#!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header$ # Warning: http://bugs.gentoo.org/show_bug.cgi?id=95722 # For the experienced MySQL admin (you are if using clusteer) it should be easy # enough to add the wanted script in /etc/init.d/ and to create the directory in # the right places. # # Sorry to close this as wontfix but I can't see a clean solution. depend() { use net } start() { ebegin "Starting ndbd" start-stop-daemon --start --quiet --background --exec /usr/sbin/ndbd -- eend $? } stop() { ebegin "Stopping ndbd" start-stop-daemon --stop --quiet --exec /usr/sbin/ndbd eend $? }