mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 23:19:31 +00:00
Update live ebuild and new version 2.8.4 update the path of the upsdrvctl executable Change ewarn by eend in openrc upsdrv Enable SYSTEMD_SUPPORTS_DAEMON_TYPE_NOTIFY_RELOAD and SYSTEMD_SUPPORTS_DAEMON_TYPE_NOTIFY only when active systemd build Closes: https://bugs.gentoo.org/959095 Closes: https://bugs.gentoo.org/960608 Signed-off-by: Fco Javier Felix <ffelix@inode64.com> Part-of: https://github.com/gentoo/gentoo/pull/44328 Closes: https://github.com/gentoo/gentoo/pull/44328 Signed-off-by: Sam James <sam@gentoo.org>
47 lines
921 B
Text
47 lines
921 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
|
|
eend $? "Failed to stop UPS $msgtext!"
|
|
}
|