sysutils/apcupsd: Several improvements

Add support for running multiple instances of apcupsd[1]
Add an option to use `shutdown -p` rather than `shutdown -h`[2]
Set as @sample several scripts that can be customized[3]
Add an option for build with MODBUS USB driver support (Enabled by default)[4]
Set LICENSE_FILE [5]
Sort OPTIONS and make a small adjustment in pkg-message
Take maintainer'ship

PR:		180336 [1]
PR:		187924 [2][3]
PR:		215809 [4]
PR:		220002 [5]

Submitted by:	leres@ee.lbl.gov [1]
Submitted by:	tdb [3]
Submitted by:	ipluta@wp.pl [4]
Submitted by:	takefu@airport.fm [5]

Approved by:	garga (mentor)
Differential Revision:	https://reviews.freebsd.org/D11224
This commit is contained in:
Danilo G. Baio 2017-06-19 22:45:58 +00:00
parent c8cfbc21d3
commit 1936d5d190
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=443914
5 changed files with 115 additions and 57 deletions

View file

@ -3,14 +3,15 @@
PORTNAME= apcupsd PORTNAME= apcupsd
PORTVERSION= 3.14.14 PORTVERSION= 3.14.14
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= sysutils CATEGORIES= sysutils
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20-%20Stable/${PORTVERSION} MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20-%20Stable/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org MAINTAINER= dbaio@FreeBSD.org
COMMENT= Set of programs for controlling APC UPS COMMENT= Set of programs for controlling APC UPS
LICENSE= GPLv2 LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
USES= gmake USES= gmake
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
@ -26,55 +27,56 @@ CONFIGURE_ENV+= LD="${CXX}" \
USE_RC_SUBR= apcupsd USE_RC_SUBR= apcupsd
SUB_FILES= pkg-message SUB_FILES= pkg-message
OPTIONS_DEFINE= APCSMART_DRV APCDUMB_DRV CLIENT_ONLY CGI PCNET_DRV USB_DRV \ OPTIONS_DEFINE= APCDUMB_DRV APCSMART_DRV CGI CLIENT_ONLY DOCS GAPCMON MODBUS \
SNMP_DRV SNMP_DRV_OLD TCP_WRAPPERS TEST_DRV GAPCMON \ MODBUS_USB PCNET_DRV SHUTDOWN_POWEROFF SNMP_DRV SNMP_DRV_OLD \
DOCS MODBUS TCP_WRAPPERS TEST_DRV USB_DRV
OPTIONS_DEFAULT= APCSMART_DRV APCDUMB_DRV PCNET_DRV SNMP_DRV USB_DRV \ OPTIONS_DEFAULT= APCDUMB_DRV APCSMART_DRV MODBUS MODBUS_USB PCNET_DRV \
TCP_WRAPPERS MODBUS SNMP_DRV TCP_WRAPPERS USB_DRV
OPTIONS_SUB= yes OPTIONS_SUB= yes
APCSMART_DRV_DESC= APC SmartUPS serial driver support
APCDUMB_DRV_DESC= Dumb UPS driver support APCDUMB_DRV_DESC= Dumb UPS driver support
CLIENT_ONLY_DESC= Only NIS client (no network server or drivers) APCSMART_DRV_DESC= APC SmartUPS serial driver support
CGI_DESC= Build CGI programs to show status CGI_DESC= Build CGI programs to show status
CLIENT_ONLY_DESC= Only NIS client (no network server or drivers)
GAPCMON_DESC= Build GTK GUI front-end
MODBUS_DESC= MODBUS driver support
MODBUS_USB_DESC= MODBUS USB driver support
PCNET_DRV_DESC= PowerChute Network Shutdown driver support PCNET_DRV_DESC= PowerChute Network Shutdown driver support
USB_DRV_DESC= USB driver support SHUTDOWN_POWEROFF_DESC= Shutdown behavior with Halt and Power off
SNMP_DRV_DESC= SNMP driver support SNMP_DRV_DESC= SNMP driver support
SNMP_DRV_OLD_DESC= Old SNMP driver support SNMP_DRV_OLD_DESC= Old SNMP driver support
TCP_WRAPPERS_DESC= ${LIBWRAP_DESC} TCP_WRAPPERS_DESC= ${LIBWRAP_DESC}
TEST_DRV_DESC= Test driver support TEST_DRV_DESC= Test driver support
GAPCMON_DESC= Build GTK GUI front-end USB_DRV_DESC= USB driver support
MODBUS_DESC= MODBUS driver support
#PORTDOCS= ${PORTNAME}.pdf
APCSMART_DRV_CONFIGURE_ENABLE= apcsmart
APCDUMB_DRV_CONFIGURE_ENABLE= dumb APCDUMB_DRV_CONFIGURE_ENABLE= dumb
CLIENT_ONLY_CONFIGURE_ON= --enable-net \ APCSMART_DRV_CONFIGURE_ENABLE= apcsmart
--disable-apcsmart --disable-dumb --disable-usb \
--disable-snmp --disable-test --disable-pcnet
CGI_CONFIGURE_ENABLE= cgi CGI_CONFIGURE_ENABLE= cgi
CGI_CONFIGURE_ON= --with-cgi-bin=${ETCDIR}/cgi CGI_CONFIGURE_ON= --with-cgi-bin=${ETCDIR}/cgi
CGI_LIB_DEPENDS= libgd.so:graphics/gd CGI_LIB_DEPENDS= libgd.so:graphics/gd
CLIENT_ONLY_CONFIGURE_ON= --enable-net \
--disable-apcsmart --disable-dumb --disable-usb \
--disable-snmp --disable-test --disable-pcnet
GAPCMON_CONFIGURE_ENABLE= gapcmon GAPCMON_CONFIGURE_ENABLE= gapcmon
GAPCMON_USES= pkgconfig GAPCMON_USES= pkgconfig
GAPCMON_USE= GNOME=gconf2 GAPCMON_USE= GNOME=gconf2
GAPCMON_CONFLICTS= gapcmon-[0-9]* GAPCMON_CONFLICTS= gapcmon-[0-9]*
PCNET_DRV_CONFIGURE_ENABLE= pcnet
USB_DRV_CONFIGURE_ENABLE= usb
SNMP_DRV_CONFIGURE_ENABLE= snmp
MODBUS_CONFIGURE_ENABLE= modbus MODBUS_CONFIGURE_ENABLE= modbus
MODBUS_USB_CONFIGURE_ENABLE= modbus-usb
PCNET_DRV_CONFIGURE_ENABLE= pcnet
SNMP_DRV_CONFIGURE_ENABLE= snmp
SNMP_DRV_OLD_CONFIGURE_ENABLE= net-snmp SNMP_DRV_OLD_CONFIGURE_ENABLE= net-snmp
SNMP_DRV_OLD_LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp SNMP_DRV_OLD_LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp
TCP_WRAPPERS_CONFIGURE_WITH= libwrap=yes TCP_WRAPPERS_CONFIGURE_WITH= libwrap=yes
TEST_DRV_CONFIGURE_ENABLE= test TEST_DRV_CONFIGURE_ENABLE= test
USB_DRV_CONFIGURE_ENABLE= usb
#CONFIGURE_ARGS+= --with-libwrap=yes
#CONFIGURE_ENV+= LIBS="-lcurses -lmenu"
#PLIST_SUB+= POWERFL=""
.include <bsd.port.options.mk> .include <bsd.port.options.mk>
post-patch-SHUTDOWN_POWEROFF-on:
${REINPLACE_CMD} -e 's|-h now|-p now|' \
${WRKSRC}/platforms/freebsd/apccontrol.in
pre-configure: pre-configure:
.if ${PORT_OPTIONS:MCLIENT_ONLY} && ( ${PORT_OPTIONS:MAPCSMART_DRV} || \ .if ${PORT_OPTIONS:MCLIENT_ONLY} && ( ${PORT_OPTIONS:MAPCSMART_DRV} || \
${PORT_OPTIONS:MAPCDUMB_DRV} || ${PORT_OPTIONS:MPCNET_DRV} || \ ${PORT_OPTIONS:MAPCDUMB_DRV} || ${PORT_OPTIONS:MPCNET_DRV} || \

View file

@ -11,24 +11,73 @@
# #
# apcupsd_enable (bool): Set to "NO" by default. # apcupsd_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable apcupsd. # Set it to "YES" to enable apcupsd.
# apcupsd_args (str): Custom additional arguments to be passed # apcupsd_flags (str): Custom additional arguments to be passed
# to apcupsd (default empty). # to apcupsd (default --kill-on-powerfail).
# apcupsd_configs (str): A list of configs to run multiple instances.
# #
. /etc/rc.subr . /etc/rc.subr
name="apcupsd" name=apcupsd
rcvar=apcupsd_enable rcvar=apcupsd_enable
load_rc_config $name load_rc_config $name
: ${apcupsd_enable="NO"} : ${apcupsd_enable="NO"}
: ${apcupsd_flags="--kill-on-powerfail"} : ${apcupsd_flags="--kill-on-powerfail"}
: ${apcupsd_pidfile="/var/run/apcupsd.pid"}
: ${apcupsd_lockfile="/var/spool/lock/apcupsd.lock"}
pidfile="/var/run/apcupsd.pid" pidfile=/var/run/${name}.pid
required_files="%%ETCDIR%%/apcupsd.conf" required_files="${apcupsd_configs:-%%ETCDIR%%/apcupsd.conf}"
command="%%PREFIX%%/sbin/apcupsd" command=%%PREFIX%%/sbin/${name}
restart_cmd=${name}_restart_cmd
run_rc_command "$1" apcupsd_precmd()
{
config=$1
dn="`/usr/bin/dirname ${pidfile}`"
if [ -n "${config}" ]; then
# Specific config
base="`/usr/bin/basename ${config} .conf`"
pidfile="${dn}/${base}.pid"
command_args="-f ${config} -P ${pidfile}"
else
# Default config
command_args=""
fi
}
apcupsd_restart_cmd()
{
if [ -n "${apcupsd_configs}" ]; then
# One or more named configs
for config in ${apcupsd_configs}; do
apcupsd_precmd ${config}
run_rc_command stop
done
for config in ${apcupsd_configs}; do
apcupsd_precmd ${config}
run_rc_command start
done
else
# Default config
apcupsd_precmd
run_rc_command stop
run_rc_command start
fi
}
if [ "$1" = restart ]; then
apcupsd_precmd
run_rc_command $1
elif [ -n "${apcupsd_configs}" ]; then
# One or more named configs
for config in ${apcupsd_configs}; do
apcupsd_precmd ${config}
run_rc_command $1
done
else
# Default config
apcupsd_precmd
run_rc_command $1
fi

View file

@ -1,11 +1,21 @@
--- platforms/etc/Makefile.orig 2014-04-09 22:15:34 UTC --- platforms/etc/Makefile.orig 2014-04-09 22:15:34 UTC
+++ platforms/etc/Makefile +++ platforms/etc/Makefile
@@ -8,7 +8,7 @@ all-uninstall: uninstall-etc @@ -8,12 +8,12 @@ all-uninstall: uninstall-etc
install-etc: install-etc:
$(call MKDIR,$(sysconfdir)) $(call MKDIR,$(sysconfdir))
- $(call INSTNEW,644,apcupsd.conf,$(sysconfdir)) - $(call INSTNEW,644,apcupsd.conf,$(sysconfdir))
- $(call INSTORIG,744,changeme,$(sysconfdir))
- $(call INSTORIG,744,commfailure,$(sysconfdir))
- $(call INSTORIG,744,commok,$(sysconfdir))
- $(call INSTORIG,744,offbattery,$(sysconfdir))
- $(call INSTORIG,744,onbattery,$(sysconfdir))
+ $(call INSTDATA,644,apcupsd.conf,$(sysconfdir)/apcupsd.conf.sample) + $(call INSTDATA,644,apcupsd.conf,$(sysconfdir)/apcupsd.conf.sample)
$(call INSTORIG,744,changeme,$(sysconfdir)) + $(call INSTDATA,744,changeme,$(sysconfdir)/changeme.sample)
$(call INSTORIG,744,commfailure,$(sysconfdir)) + $(call INSTDATA,744,commfailure,$(sysconfdir)/commfailure.sample)
$(call INSTORIG,744,commok,$(sysconfdir)) + $(call INSTDATA,744,commok,$(sysconfdir)/commok.sample)
+ $(call INSTDATA,744,offbattery,$(sysconfdir)/offbattery.sample)
+ $(call INSTDATA,744,onbattery,$(sysconfdir)/onbattery.sample)
uninstall-etc:

View file

@ -1,26 +1,23 @@
********************************************************************** **********************************************************************
Read the manual Read the manual:
http://www.apcupsd.org/manual/manual.html
http://www.apcupsd.org/manual/manual.pdf
%%DOCSDIR%%/apcupsd.pdf Sample files and scripts are installed in %%ETCDIR%%.
to do site specific configuration assigenments! Especially have a
detailed look into the chapter describing the shutdown procedure.
Sample files are installed in %%ETCDIR%%. These files
must be copied and/or configured for a proper working apcupsd.
You need to modify %%ETCDIR%%/apcupsd.conf as follows: You need to modify %%ETCDIR%%/apcupsd.conf as follows:
For serial cable: DEVICE /dev/cuadX (or /dev/cuaaX for [45.]x) For serial cable: DEVICE /dev/cuadX (or /dev/cuaaX for [45.]x)
For USB cable: DEVICE (yes, leave it blank after DEVICE) For USB cable: DEVICE (yes, leave it blank after DEVICE)
NOTE that for USB cable you must comment out the line NOTE that for USB cable you need uhid support.
device uhid # "Human Interface Devices" To compile this driver into the kernel, place the following line in your
kernel configuration file:
device uhid
in your kernel configuration file and recompile the kernel. Alternatively, to load the driver as a module at boot time, place the
Your keyboard and mouse will still work. following line in loader.conf(5):
uhid_load="YES"
WARNING USB support on FreeBSD is still considered BETA!
Add apcupsd_enable=YES to your /etc/rc.conf[.local] to have apcupsd Add apcupsd_enable=YES to your /etc/rc.conf[.local] to have apcupsd
starting up at boot time. starting up at boot time.

View file

@ -4,11 +4,11 @@ sbin/apctest
sbin/smtp sbin/smtp
@sample %%ETCDIR%%/apcupsd.conf.sample @sample %%ETCDIR%%/apcupsd.conf.sample
%%ETCDIR%%/apccontrol %%ETCDIR%%/apccontrol
%%ETCDIR%%/changeme @sample %%ETCDIR%%/changeme.sample
%%ETCDIR%%/commfailure @sample %%ETCDIR%%/commfailure.sample
%%ETCDIR%%/commok @sample %%ETCDIR%%/commok.sample
%%ETCDIR%%/onbattery @sample %%ETCDIR%%/onbattery.sample
%%ETCDIR%%/offbattery @sample %%ETCDIR%%/offbattery.sample
%%CGI%%@sample %%ETCDIR%%/apcupsd.css.sample %%CGI%%@sample %%ETCDIR%%/apcupsd.css.sample
%%CGI%%@sample %%ETCDIR%%/hosts.conf.sample %%CGI%%@sample %%ETCDIR%%/hosts.conf.sample
%%CGI%%@sample %%ETCDIR%%/multimon.conf.sample %%CGI%%@sample %%ETCDIR%%/multimon.conf.sample