Files
AlpinePackages/nut/powerfail.initd
Bram Prieshof 227d70ac16 Added a fork of the NUT Package
* Forked of the community repo version to enable CGI components
2025-02-14 23:34:41 +01:00

18 lines
384 B
Plaintext

#!/sbin/openrc-run
# Copyright 2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
description='Signal the UPS to kill power in a power failure condition'
depend() {
need mount-ro
}
start() {
if [ "$RC_RUNLEVEL" = "shutdown" -a -f /etc/killpower ] ; then
ebegin 'Signaling UPS to kill power'
/usr/sbin/upsdrvctl shutdown
eend $?
fi
}