Mntsnow,
This contrib is an interesting study in relation to its porting to SME 8.0. I've installed and used sme7admin for years and it's worked great. Recently added SME 8.0 to two of the same servers we were running sme 7 on - with mixed results for sme8admin. The oldest of the machines runs without the error your reporting but two of the newer machines receive this message when trying to setup lm_sensors.
Take this with a grain of salt. I don't know how the new version of sme8admin is templated or designed - sme7admin used four files to complete it's rounds on our servers.
1. /etc/sensors.conf
2. /etc/modules.conf
3. /etc/sysconfig/lm_sensors
4. /etc/rc.d/rc.local
With the new version the "modules.conf" is not even created. Yet even with this error it does create the lm_sensors file with the modules commands.
We were successful getting lm_sensors to work correctly by putting in info from older config files for these motherboards for lm_sensors.
Take a crack at this .....
ensure your /etc/sysconfig/lm_sensors has the "module" loaded for your chipset as detected by sensors-detect (two of our servers use the w83627wf module)
nano /etc/sysconfig/lm_sensors
at the bottom ensure the following is inserted - MODULE_0=w83627hf - if not paste it and ctrl-x to exit follow the onscreen save options at the bottom of nano.
I created a /etc/modules.conf and put the old info in it....
nano /etc/modules.conf
Insert and save:
# I2C module options
alias char-major-89 i2c-dev
Insert the following in the /etc/rc.d/rc.local and save
# I2C adapter drivers
modprobe i2c-isa
# I2C chip drivers
modprobe w83627hf
# Sleep 2 Optional (Recommended)
/usr/bin/sensors -s
run signal-event post-upgrade ; signal-event reboot
once back in the server run the "sensors" command and adjust the /etc/sensors.conf according to your motherboard.
Hope this helps - there are no error messages I can find in the logs after completing but sme8admin works great.
Also, please raise a bug in the bugtracker so the developer is made aware and can address the issue - Thanks