Browse Source

Merge pull request #6655 from cshoredaniel/pr-fix-nut-upsmon-no-server

nut: Fix for nut-upsmon without nut-server
lilik-openwrt-22.03
Stijn Tintel 6 years ago
committed by GitHub
parent
commit
3a9f0a4baa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 9 deletions
  1. +1
    -1
      net/nut/Makefile
  2. +14
    -8
      net/nut/files/nut-monitor.init

+ 1
- 1
net/nut/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=nut
PKG_VERSION:=2.7.4
PKG_RELEASE:=6
PKG_RELEASE:=7
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.networkupstools.org/source/2.7/


+ 14
- 8
net/nut/files/nut-monitor.init View File

@ -126,8 +126,11 @@ nut_upsmon_add() {
local password
local system
# If no core config, use defaults
[ -r $UPSMON_C ] || nut_upsmon_conf ""
# if UPSMON_C is a symlink we're only doing generated config
[ -L $UPSMON_C ] && {
rm -f $UPSMON_C
nut_upsmon_conf ""
}
config_get upsname "$cfg" upsname
config_get hostname "$cfg" hostname localhost
@ -143,7 +146,8 @@ nut_upsmon_add() {
}
start_service() {
rm -f $UPSMON_C
mkdir -p "$(dirname "$UPSMON_C")"
chmod 750 "$(dirname "$UPSMON_C")"
config_load nut_monitor
@ -156,20 +160,22 @@ start_service() {
chmod 640 $UPSMON_C
chmod 640 /var/etc/nut/nut.conf
chown ${runas:-root}:$(id -gn ${runas:-root}) /var/etc/nut
chown ${runas:-root}:$(id -gn ${runas:-root}) /var/etc/nut/nut.conf
chown ${runas:-root}:$(id -gn ${runas:-root}) $UPSMON_C
[ -d /var/run/nut ] || {
mkdir -m 0750 -p /var/run/nut
chown ${runas:-root}:$(id -gn ${runas:-root}) /var/run/nut
}
chown ${runas:-root}:$(id -gn ${runas:-root}) $UPSMON_C
$DEBUG /usr/sbin/upsmon $UPSMON_OPTIONS
exec $DEBUG /usr/sbin/upsmon $UPSMON_OPTIONS
}
stop_service() {
[ -r $PID_F ] && /usr/sbin/upsmon -c stop
rm -f $UPSMON_C
exec /usr/sbin/upsmon -c stop
}
reload_service() {
upsmon -c reload
exec /usr/sbin/upsmon -c reload
}

Loading…
Cancel
Save