-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ups-nut from 0.45.3 to 0.45.5. Notable changes:
- upsd.users(5) has changed formats. NOTE: you need to update your file for upsd(8) to function - upsmon can reload its configuration on the fly (with '-c reload') - upsdrvctl can power off UPS's in an orderly fashion - new drivers: - tripplite - Tripp-Lite SmartUPS models - newvictron - IMV/Victron hardware - bestferrups801-807 - Best FerrUPS 8.01-8.07 firmware - genericups type 14 - for Online P-series units - upsdrvctl now waits up to "maxstartdelay" (default 45) seconds for a driver to start before it gives up and goes to the next entry (refer to CHANGES in the distribution, or http://www.exploits.org/nut/release/new-0.45.4.txt and http://www.exploits.org/nut/release/new-0.45.5.txt for a detailed list)
- Loading branch information
lukem
committed
May 13, 2002
1 parent
14562db
commit 86ae7d8
Showing
6 changed files
with
40 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
====================================================================== | ||
$NetBSD: MESSAGE,v 1.1 2002/05/13 14:40:51 lukem Exp $ | ||
|
||
${NUT_CONFDIR}/upsd.users has a new format from version 0.45.5. | ||
You will need to update this before restarting upsd(8). | ||
Refer to ${NUT_EGDIR}/upsd.users.sample | ||
and upsd.users(5) for more information. | ||
|
||
====================================================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
$NetBSD: distinfo,v 1.9 2002/01/03 14:42:43 lukem Exp $ | ||
$NetBSD: distinfo,v 1.10 2002/05/13 14:40:51 lukem Exp $ | ||
|
||
SHA1 (nut-0.45.3.tar.gz) = c6596eb9291a046e47a473db8cec81a082e28d2b | ||
Size (nut-0.45.3.tar.gz) = 339066 bytes | ||
SHA1 (nut-0.45.5.tar.gz) = 5cb08e27fb7e528a453d164d401410d341bf3bb3 | ||
Size (nut-0.45.5.tar.gz) = 386936 bytes | ||
SHA1 (patch-ab) = fac1a47430a2c2d692ecede2ac6ed78c60a82566 | ||
SHA1 (patch-ad) = 1132a678cc53882cc92764ed17bbd4cf4152c58d | ||
SHA1 (patch-af) = 92f99eae16425baab09b1f5e6546caf322ca430c | ||
SHA1 (patch-ag) = d75f10af8a716effbdca17dd28323bd6edc75c87 | ||
SHA1 (patch-ag) = b6ae992f9b92d68683ac6adb7378d11158cc1fdc |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
$NetBSD: patch-ag,v 1.3 2001/11/21 03:22:05 simonb Exp $ | ||
$NetBSD: patch-ag,v 1.4 2002/05/13 14:40:51 lukem Exp $ | ||
|
||
--- models/Makefile.in.orig Wed Aug 29 21:40:53 2001 | ||
+++ models/Makefile.in Wed Nov 21 02:52:43 2001 | ||
@@ -1,7 +1,9 @@ | ||
# Network UPS Tools: models | ||
--- models/Makefile.in.orig Tue Mar 26 10:30:31 2002 | ||
+++ models/Makefile.in | ||
@@ -2,6 +2,7 @@ | ||
|
||
# directories | ||
+prefix = $(INSTALLROOT)@prefix@ | ||
MODELPATH = $(INSTALLROOT)@MODELPATH@ | ||
+SBINPATH = $(prefix)/@sbindir@ | ||
+SBINPATH = $(INSTALLROOT)@prefix@/@sbindir@ | ||
|
||
# other definitions | ||
CC = @CC@ | ||
@@ -85,6 +87,8 @@ | ||
distclean: clean | ||
@@ -97,7 +98,7 @@ | ||
# Install handlers | ||
|
||
install: all install-@DRIVER_INSTALL_TARGET@ | ||
- $(INSTALLCMD) -m $(INSTALLMODE) upsdrvctl $(MODELPATH); | ||
+ $(INSTALLCMD) -m $(INSTALLMODE) upsdrvctl $(SBINPATH); | ||
|
||
# Install every driver | ||
|
||
install: all | ||
- @for f in $(PROGS) $(PROGS2) upsdrvctl ; do \ | ||
+ $(INSTALLCMD) -m 0755 -d $(MODELPATH) | ||
+ @for f in $(PROGS) $(PROGS2) ; do \ | ||
$(INSTALLCMD) -m $(INSTALLMODE) $$f $(MODELPATH); \ | ||
done | ||
+ @$(INSTALLCMD) -m $(INSTALLMODE) upsdrvctl $(SBINPATH) |