summaryrefslogtreecommitdiffstats
path: root/system/nut/nut_restart_udev
blob: d289c0f87a45e2f5fe7b032f7980371c681d91fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# This file is part of Network UPS Tools build for Slackware Linux.
# It should be sourced in /etc/rc.d/rc.0 as part of the poweroff sequence.
# Here, we restart udev so that the system is able to kill off the UPS inverter.
# Reference: http://www.mail-archive.com/nut-upsdev@lists.alioth.debian.org/msg01099.html
# To be sourced after the rootfs has been remounted read-only.

if [ -f /etc/killpower ]; then
echo "Restarting udev to be able to shut the UPS inverter off..."
/etc/rc.d/rc.udev start
sleep 10
fi