mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
core130: Do not search for sensors on AWS
This causes some i2c drivers to load and tons of error messages being created in syslog. So we skip searching for any sensors that do not exist. Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -4,6 +4,7 @@ srv/web/ipfire/cgi-bin/credits.cgi
|
||||
var/ipfire/langs
|
||||
etc/collectd.conf
|
||||
etc/logrotate.conf
|
||||
etc/rc.d/init.d/collectd
|
||||
etc/rc.d/init.d/firewall
|
||||
etc/rc.d/init.d/networking/red.up/23-suricata
|
||||
etc/rc.d/init.d/suricata
|
||||
|
||||
@@ -35,6 +35,11 @@ case "$1" in
|
||||
touch /etc/sysconfig/lm_sensors
|
||||
fi
|
||||
|
||||
# Do not search for sensors when running on AWS
|
||||
if [ -e "/var/run/aws-instance-id" ]; then
|
||||
touch /etc/sysconfig/lm_sensors
|
||||
fi
|
||||
|
||||
# At first run search for sensors with sensors-detect
|
||||
if [ ! -e /etc/sysconfig/lm_sensors ]; then
|
||||
boot_mesg "Searching for Sensors..."
|
||||
|
||||
Reference in New Issue
Block a user