From bbd544ea81ce56719560ceaae890357f66a656c7 Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Mon, 18 Apr 2011 20:53:41 +0200 Subject: [PATCH] services.cgi: blacklist mdadm (no good idea to stop it with webif). --- html/cgi-bin/services.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/html/cgi-bin/services.cgi b/html/cgi-bin/services.cgi index b6efe09584..55740cf26d 100644 --- a/html/cgi-bin/services.cgi +++ b/html/cgi-bin/services.cgi @@ -177,9 +177,10 @@ END # blacklist some packages # # alsa has trouble with the volume saving and was not really stopped + # mdadm should not stopped with webif because this could crash the system # chomp($_); - if ($_ ne "alsa"){ + if ( ($_ ne "alsa") && ($_ ne "mdadm") ) { $lines++; if ($lines % 2){ print ""; -- 2.39.2