net-snmp: avoid duplicate section names
authorStijn Tintel <stijn@linux-ipv6.be>
Fri, 29 Sep 2017 01:28:18 +0000 (04:28 +0300)
committerStijn Tintel <stijn@linux-ipv6.be>
Fri, 29 Sep 2017 01:36:47 +0000 (04:36 +0300)
It seems that UCI can't handle duplicate section names in a single
config file, even if they use different types. After the previous
commit, running `uci export` results in the following error:

uci: Parse error (section of different type overwrites prior section with same name) at line 17, byte 23

Append a 6 to the com2sec6 section names to solve this.

Fixes: 0e1c8b4ccc2c ("net-snmp: snmpd: listen on IPv6 by default")
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
net/net-snmp/Makefile
net/net-snmp/files/snmpd.conf

index 104a4d54a7e81eefb75087e5667c28e46423e0d8..0237a54da5f1818213ed397d655874050c7c4596 100644 (file)
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=net-snmp
 PKG_VERSION:=5.7.3
-PKG_RELEASE:=8
+PKG_RELEASE:=9
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=@SF/net-snmp
index b11905984056a25881f1eb32a34fa8c1ef8cca82..e18864d539bef1bb99d306f1f3a355d36f531267 100644 (file)
@@ -14,12 +14,12 @@ config com2sec private
        option source localhost
        option community private
 
-config com2sec6 public
+config com2sec6 public6
        option secname ro
        option source default
        option community public
 
-config com2sec6 private
+config com2sec6 private6
        option secname rw
        option source localhost
        option community private