gentoo-ebuilds/sys-power/nut/files/nut-2.2.2-init.d-upsdrv
2025-04-24 07:59:47 +01:00

47 lines
922 B
Text

#!/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"
}
start_pre() {
checkpath -q -d -m 0700 -o nut:nut /run/nut
}
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
ewarn $? "Failed to stop UPS $msgtext!"
}