From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 11 Dec 2025 10:26:51 +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 1vTcwk-00AFDW-33 for lore@lore.pengutronix.de; Thu, 11 Dec 2025 10:26:51 +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 1vTcwk-0001FK-Pi; Thu, 11 Dec 2025 10:26:50 +0100 Received: from mail.thorsis.com ([2003:a:e28:26e4::10]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1vTcwU-0001Ed-FU; Thu, 11 Dec 2025 10:26:35 +0100 Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 6838E1485828; Thu, 11 Dec 2025 10:26:33 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thorsis.com; s=dkim; t=1765445193; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding; bh=+gXO4AK/m31x3ybcY6DZ8F+k1wzvcI39zCpE/0L3rAU=; b=ebj2EctvePIF8+WboBOQbPzXDr670faTgR6/wAq1QlGG/2/nCfsZUx0ZsYhBshP8V6EvSr NksIyndCFLP5ud4bJSQm0Sar/1nLSveiEipcV0QqjwIlqMmBgaQBVzEDRRb3Q3DbZjh9bq GKOK3ZBS0CBf2uqyVLUCq3svKP5QX9NNoenyyAlMqkrgqe26rxjTR0HE3t5sKGCEgeisxu vzAMcmrhMYXmZyRBiajbl2gesamoqJ/r36grMlWow1VtpfTLIj4Laz73wb2P9om8YBuCpQ lyLCpZ6330dvdROzu2IlHX5jOsJ2unnL4MXQAwmQFRATP1nORJbNzYFOtTUVWQ== To: ptxdist@pengutronix.de Date: Thu, 11 Dec 2025 10:26:28 +0100 Message-ID: <20251211092628.1227497-1-ada@thorsis.com> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Last-TLS-Session-Version: TLSv1.3 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.whiteo.stw.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-2.0 required=4.0 tests=AWL,BAYES_00, CONTENT_AFTER_HTML,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.2 Subject: [ptxdist] [PATCH] 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: , From: Alexander Dahl via ptxdist Reply-To: ptxdist@pengutronix.de Cc: Alexander Dahl , Michael Olbrich 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 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 --- projectroot/etc/init.d/thttpd | 52 --------------------------------- projectroot/var/www/thttpd.html | 17 ----------- 2 files changed, 69 deletions(-) delete mode 100644 projectroot/etc/init.d/thttpd delete mode 100644 projectroot/var/www/thttpd.html diff --git a/projectroot/etc/init.d/thttpd b/projectroot/etc/init.d/thttpd deleted file mode 100644 index 51102b9d0..000000000 --- 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 78d520e93..000000000 --- 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. -

- - - base-commit: fd0dc47b258aac09ab961199a3c00ecddf98f244 -- 2.47.3