From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 12 Dec 2025 15:54:52 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vU4Xk-00Ahhg-07 for lore@lore.pengutronix.de; Fri, 12 Dec 2025 15:54:52 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1vU4Xj-0007Xy-JO; Fri, 12 Dec 2025 15:54:51 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1vU4VG-00047Z-5D; Fri, 12 Dec 2025 15:52:18 +0100 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vU4VF-005JL8-2N; Fri, 12 Dec 2025 15:52:17 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1vU4VF-0000000CjES-2sFg; Fri, 12 Dec 2025 15:52:17 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 12 Dec 2025 15:52:17 +0100 Message-ID: <20251212145217.3033754-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20251211092628.1227497-1-ada@thorsis.com> References: <20251211092628.1227497-1-ada@thorsis.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] thttpd: Remove leftovers from package removal X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Alexander Dahl Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 5e1afb07c9633cc7942f70c5fffb3ca1cedfb6bf. Michael [sent from post-receive hook] On Fri, 12 Dec 2025 15:52:17 +0100, Alexander Dahl wrote: > Those files were installed to target by old rules/thttpd.make, > but that is long gone. > > Fixes: e9c62e81d29f ("thttpd: remove old package") > Signed-off-by: Alexander Dahl > Message-Id: <20251211092628.1227497-1-ada@thorsis.com> > Signed-off-by: Michael Olbrich > > diff --git a/projectroot/etc/init.d/thttpd b/projectroot/etc/init.d/thttpd > deleted file mode 100644 > index 51102b9d0f60..000000000000 > --- a/projectroot/etc/init.d/thttpd > +++ /dev/null > @@ -1,52 +0,0 @@ > -#!/bin/sh > -# > -# thttpd > -# > - > -PREFIX="thttpd: " > -THISFILE=$0 > -DOCUMENTROOT="/var/www" > -thttpd="/usr/sbin/thttpd" > -PIDFILE="/var/run/thttpd.pid" > -LOGFILE="/var/log/thttpd.log" > - > -usage() { > - echo "${PREFIX}usage: $THISFILE [start|stop]" > -} > - > -case $1 in > - > - start) > - echo "${PREFIX} starting" > - if [ -e "$PIDFILE" ]; then > - echo "${PREFIX} warning: another thttpd seems to be running, trying to kill it" > - kill -9 `cat $PIDFILE` > - rm -f $PIDFILE > - fi > - $thttpd -d $DOCUMENTROOT -u www -nor -nos -p 80 -c '**.cgi' -i $PIDFILE -l $LOGFILE > - if [ "$?" != "0" ]; then > - echo "${PREFIX} error, could not start server" > - rm -f $PIDFILE > - else > - echo "${PREFIX} done" > - fi > - ;; > - > - stop) > - if [ -e "$PIDFILE" ]; then > - echo "${PREFIX} stopping" > - kill -USR1 `cat $PIDFILE` > - rm -f $PIDFILE > - echo "${PREFIX} done" > - else > - echo "${PREFIX} not running" > - fi > - ;; > - > - *) > - > - usage > - exit 1 > - ;; > - > -esac > diff --git a/projectroot/var/www/thttpd.html b/projectroot/var/www/thttpd.html > deleted file mode 100644 > index 78d520e931dc..000000000000 > --- a/projectroot/var/www/thttpd.html > +++ /dev/null > @@ -1,17 +0,0 @@ > - > - > -thttpd is running > - > - > -

thttpd is running

> - > -

> -Looks like you got it working. Congrats. > -

> - > -

> -Here's a link to the thttpd web pages. > -

> - > - > -