You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CRITICAL uninstall fix (the same bug found and fixed in CannonadeCommander and
ShipLog). The removal script was wrapped in a bare <REMOVE> tag, which
Unraid's plugin manager does NOT execute (it only runs <FILE Method="remove">
blocks) - so uninstalling silently left the plugin files, the installed package
and the cached flash .txz behind (Unraid still moved the flash .plg off, because
a remove that runs nothing trivially "succeeds"). Removal is now a proper <FILE Run="/bin/bash" Method="remove"> block ending in exit 0 (Unraid only
clears the flash .plg on a zero exit, else it reinstalls on boot); it removes the
exact registered package and wipes the files (SmokeSignal is a stateless
on-demand check - no daemon, no user data).