Skip to content

Commit

Permalink
collectd: only load iwinfo plugin on non low_mem or _flash devices
Browse files Browse the repository at this point in the history
This fixes #1030
  • Loading branch information
FFHener committed Oct 25, 2024
1 parent 5f5cce2 commit 709fa00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ LoadPlugin olsrd
</Plugin>
{% endif %}

{% if wireless_devices is defined and wireless_profile != 'disable' %}
{% if wireless_devices is defined and wireless_profile != 'disable' and low_mem is not true | default (true) and low_flash is not true | default (true) %}
LoadPlugin iwinfo
{% endif %}

Expand Down

0 comments on commit 709fa00

Please sign in to comment.