Displaying 1 result from an estimated 1 matches for "_implies_".
2018 Feb 01
2
CentOS 7, systemd, nut-monitor, and failing to shut down the UPS
...gets the message.
After a lot of false leads and frustration I narrowed it down to the
/usr/lib/systemd/system-shutdown/nutshutdown script. It _appears_ that
the calls to "upsmon -K" and "upsdrvctl shutdown" can't actually do
anything because the USB device is in use. This _implies_ to me that
nut-driver is still running, even this late in the shutdown process.
I've "fixed" this problem by modifying the nutshutdown script:
#!/bin/sh
# stop nut driver to free up access to the device
/sbin/systemctl stop nut-driver
# make sure it has time to die
sleep 2
# ch...