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.
gentoo-overlay/sys-power/nut/files/nut-2.2.2-init.d-upsdrv

44 lines
859 B

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
extra_commands="stopall startall"
UPSNAME=${SVCNAME#*.}
msgtext="drivers"
[ "${UPSNAME}" = "${SVCNAME}" ] && UPSNAME=''
[ -n "$UPSNAME" ] && msgtext="driver for $UPSNAME"
depend() {
before upsd
[ "${UPSNAME}" != '' ] && provide upsdrv
}
start() {
_dostart "$UPSNAME" "$msgtext"
}
stop() {
_dostop "$UPSNAME" "$msgtext"
}
startall() {
_dostart "" "$msgtext"
}
stopall() {
_dostop "" "$msgtext"
}
_dostart() {
ebegin "Starting UPS $msgtext"
/usr/sbin/upsdrvctl start $UPSNAME
eend $? "Failed to start UPS $msgtext!"
}
_dostop() {
# The pidfile names depend on the actual UPS name
# Not in our control at all
ebegin "Stopping UPS $msgtext"
/usr/sbin/upsdrvctl stop $UPSNAME
eend $? "Failed to stop UPS $msgtext!"
}