From ce580d9935958c04edb1584e1d346abe91628d98 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sat, 1 Aug 2026 11:49:05 -0400 Subject: [PATCH] Remove dead rc.emhttp mapping from adapter.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No such rc.d service exists on Unraid (emhttpd isn't managed via a standalone rc.emhttp script) and nothing in the codebase calls platform_restart_service/platform_stop_service with 'emhttp' — confirmed during a post-7.3.2-upgrade audit of all platform-specific paths. --- Plugin/unraid/adapter.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/Plugin/unraid/adapter.sh b/Plugin/unraid/adapter.sh index f1c5e85..76bf4c9 100755 --- a/Plugin/unraid/adapter.sh +++ b/Plugin/unraid/adapter.sh @@ -61,7 +61,6 @@ _platform_rc_script() { rsyslog) echo "/etc/rc.d/rc.rsyslogd" ;; nginx) echo "/etc/rc.d/rc.nginx" ;; php-fpm) echo "/etc/rc.d/rc.php-fpm" ;; - emhttp) echo "/etc/rc.d/rc.emhttp" ;; *) echo "/etc/rc.d/rc.$1" ;; esac }