Skip to content

Commit 8c1baaf

Browse files
committed
Remove Network-WeatherMap
1 parent d26f4c4 commit 8c1baaf

2 files changed

Lines changed: 1 addition & 12 deletions

File tree

Dockerfile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
# renovate: datasource=github-releases packageName=librenms/librenms versioning=semver
44
ARG LIBRENMS_VERSION="25.6.0"
5-
ARG WEATHERMAP_PLUGIN_COMMIT="0b2ff643b65ee4948e4f74bb5cad5babdaddef27"
65
ARG ALPINE_VERSION="3.21"
76
ARG SYSLOGNG_VERSION="4.8.3-r1"
87

@@ -131,17 +130,10 @@ RUN apk --update --no-cache add -t build-dependencies \
131130
&& sed -i '/runningUser/d' lnms \
132131
&& echo "foreach (glob(\"/data/config/*.php\") as \$filename) include \$filename;" >> config.php \
133132
&& echo "foreach (glob(\"${LIBRENMS_PATH}/config.d/*.php\") as \$filename) include \$filename;" >> config.php \
134-
&& ( \
135-
git clone https://github.com/librenms-plugins/Weathermap.git ./html/plugins/Weathermap \
136-
&& cd ./html/plugins/Weathermap \
137-
&& git reset --hard $WEATHERMAP_PLUGIN_COMMIT \
138-
) \
139133
&& chown -R nobody:nogroup ${LIBRENMS_PATH} \
140134
&& apk del build-dependencies \
141135
&& rm -rf .git \
142136
html/plugins/Test \
143-
html/plugins/Weathermap/.git \
144-
html/plugins/Weathermap/configs \
145137
doc/ \
146138
tests/ \
147139
/tmp/*

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ ___
6363
* [Dispatcher service](#dispatcher-service) as "sidecar" container
6464
* Syslog-ng support through a ["sidecar" container](#syslog-ng)
6565
* Snmp-trap support through a ["sidecar" container](#snmptrapd)
66-
* Built-in LibreNMS [Weathermap plugin](https://docs.librenms.org/Extensions/Weathermap/)
6766
* Ability to add custom Monitoring plugins
6867
* Ability to add custom alert templates
6968
* OPCache enabled to store precompiled script bytecode in shared memory
@@ -191,8 +190,6 @@ linux/s390x
191190

192191
* `LIBRENMS_BASE_URL`: URL of your LibreNMS instance (default `/`)
193192
* `LIBRENMS_SNMP_COMMUNITY`: This container's SNMP v2c community string (default `librenmsdocker`)
194-
* `LIBRENMS_WEATHERMAP`: Enable LibreNMS [Weathermap plugin](https://docs.librenms.org/Extensions/Weathermap/) (default `false`)
195-
* `LIBRENMS_WEATHERMAP_SCHEDULE`: CRON expression format (default `*/5 * * * *`)
196193
* `MEMCACHED_HOST`: Hostname / IP address of a Memcached server
197194
* `MEMCACHED_PORT`: Port of the Memcached server (default `11211`)
198195
* `RRDCACHED_SERVER`: RRDcached server (eg. `rrdcached:42217`)
@@ -402,7 +399,7 @@ $ docker run -d --name librenms_snmptrapd \
402399

403400
You can add [plugins for LibreNMS](https://docs.librenms.org/Extensions/Plugin-System/)
404401
in `/data/plugins/`. If you add a plugin that already exists in LibreNMS, it
405-
will be removed and yours will be used (except for Weathermap).
402+
will be removed and yours will be used.
406403

407404
> [!WARNING]
408405
> Container has to be restarted to propagate changes.

0 commit comments

Comments
 (0)