Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

templates: deactivate stderr of collectd if it monitors airos_6 #769

Merged
merged 1 commit into from
Feb 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions roles/cfg_openwrt/templates/common/rc.local.j2
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,10 @@ echo {{ override['value'] }} > {{ override['path'] }}
{{ cmd }}
{% endfor %}

{% if snmp_devices|selectattr('snmp_profile', 'equalto', 'airos_6')|list|length > 0 %}
# Change the option "procd_set_param stderr 1" to "0" in the file /etc/init.d/collectd
# This is needed because airos_6 APs w/o stations resulted in a lot of local log spamming
sed -i 's/\(procd_set_param stderr\)[[:space:]]*1/\1 0/' /etc/init.d/collectd
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sed -i 's/\(procd_set_param stderr\)[[:space:]]\{1,\}1/\1 0/' /etc/init.d/collectd would be more precise as it requires at least one space to be present.

{% endif %}

exit 0