Hello everyone,
maybe someone already knows a solution for this:
I enabled the SSH Access in the webUI.
So far everything is working fine unless I'm restarting the whole unraid server.
After restarting the webUI still says SSH Server enabled: yes, but it's not started.
I need to reapply the settings to start the SSH Server again to gain access.
it's not maintained anymore by bergware. So pull request via github is senseless. Last update is more than a year.
Right now it's maintained by unraid itself.
Changing the file locally doesn't help after reboot.
Can please someone fix the "autofan" script?
/usr/local/emhttp/plugins/dynamix.system.autofan/scripts/autofan
if [[ $SLEEPING -eq 0 ]]; then
if [[ $DISK == /dev/nvme[0-9] ]]; then
the "-eq 0" is wrong here. Should be "-ne" because the temp of the hdd/nvme is not read out if it is NOT sleeping.
So please PLEASE change it to
if [[ $SLEEPING -ne 0 ]]; then
if [[ $DISK == /dev/nvme[0-9] ]]; then
CURRENT_TEMP=$(smartctl -n standby -A $DISK | awk '$1=="Temperature:" {print $2;exit}')
[...]
Thanks a lot.
Would save me so much heated nvmes