From b237e769f145da9320fcd80675518180fd88749f Mon Sep 17 00:00:00 2001 From: dresi Date: Wed, 10 Jun 2026 14:25:57 +0200 Subject: [PATCH] fix: correct MIB path from ubiquiti to ubnt in LibreNMS repo --- telegraf-snmp/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/telegraf-snmp/Dockerfile b/telegraf-snmp/Dockerfile index 984d2e0..a0f40fb 100644 --- a/telegraf-snmp/Dockerfile +++ b/telegraf-snmp/Dockerfile @@ -2,7 +2,7 @@ FROM telegraf:latest LABEL org.opencontainers.image.authors="dockerimage@dresi.wtf" RUN wget -q -O /usr/share/snmp/mibs/UBNT-MIB \ - https://raw.githubusercontent.com/librenms/librenms/master/mibs/ubiquiti/UBNT-MIB && \ + https://raw.githubusercontent.com/librenms/librenms/master/mibs/ubnt/UBNT-MIB && \ wget -q -O /usr/share/snmp/mibs/UBNT-UniFi-MIB \ - https://raw.githubusercontent.com/librenms/librenms/master/mibs/ubiquiti/UBNT-UniFi-MIB && \ + https://raw.githubusercontent.com/librenms/librenms/master/mibs/ubnt/UBNT-UniFi-MIB && \ echo "mibs +ALL" >> /etc/snmp/snmp.conf