mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 15:37:58 +02:00
Bug: https://bugs.gentoo.org/954303 Closes: https://bugs.gentoo.org/952749 Signed-off-by: INODE64 <web@inode64.com> Part-of: https://github.com/gentoo/gentoo/pull/41698 Closes: https://github.com/gentoo/gentoo/pull/41698 Signed-off-by: Sam James <sam@gentoo.org>
47 lines
922 B
Text
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!"
|
|
}
|