#!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/www-apps/nut/files/upsdrv.rc6-r1,v 1.1 2005/02/14 07:57:16 robbat2 Exp $ depend() { need net before upsd } start() { ebegin "Starting UPS drivers" /usr/sbin/upsdrvctl start eend $? "Failed to start UPS drivers!" } stop() { ebegin "Stopping UPS drivers" /usr/sbin/upsdrvctl stop eend $? "Failed to stop UPS drivers!" }