March 29Mar 29 On every single reboot, all plugins (Community Applications, FanCtrl, etc.) show "Not Available." * If I click "Check for Updates" manually, they all turn Green instantly.I have tried a total Nuke/Fresh Install of the OS, and the issue persists.I have tried adding sleep 60 and NETWORK_TIMEOUT="60" to my /boot/config/go and network.cfg, but the OS still tries to verify plugins before the Deco 6E finishes the 2.5GbE/10GbE handshake. armin-diagnostics-20260329-2313.zip
March 29Mar 29 Author Solution The Solution: The "RAM Maneuver"Move the logic to a separate script, copy it to RAM at boot to "unlock" it, and use a watchdog to wait for the internet.1. Create /boot/config/watchdog.sh:#!/bin/bash ( for i in {1..30}; do if ping -c 1 8.8.8.8 &> /dev/null; then sleep 15 # Let DNS settle /usr/local/sbin/plugin checkall break fi sleep 10 done ) & # Load Fan Drivers modprobe nct6775 ignore_resource_conflict=1 && /usr/bin/sensors -s 2. Update /boot/config/go to trigger it:#!/bin/bash /usr/local/sbin/emhttp & ulimit -n 65535 # Copy to RAM to bypass Flash Drive permission limits cp /boot/config/watchdog.sh /usr/local/bin/watchdog.sh chmod +x /usr/local/bin/watchdog.sh /usr/local/bin/watchdog.sh
March 29Mar 29 48 minutes ago, armin0012002 said:The Solution: The "RAM Maneuver"Move the logic to a separate script, copy it to RAM at boot to "unlock" it, and use a watchdog to wait for the internet.1. Create /boot/config/watchdog.sh:#!/bin/bash ( for i in {1..30}; do if ping -c 1 8.8.8.8 &> /dev/null; then sleep 15 # Let DNS settle /usr/local/sbin/plugin checkall break fi sleep 10 done ) & # Load Fan Drivers modprobe nct6775 ignore_resource_conflict=1 && /usr/bin/sensors -s 2. Update /boot/config/go to trigger it:#!/bin/bash /usr/local/sbin/emhttp & ulimit -n 65535 # Copy to RAM to bypass Flash Drive permission limits cp /boot/config/watchdog.sh /usr/local/bin/watchdog.sh chmod +x /usr/local/bin/watchdog.sh /usr/local/bin/watchdog.shDo you have plugin notification update set in notifications?
March 29Mar 29 Author 1 hour ago, SimonF said:Do you have plugin notification update set in notifications?no do i need to?
March 29Mar 29 2 hours ago, armin0012002 said:no do i need to?That will check the status and update is there are pending updates
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.