From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 30 Aug 2022 14:55:21 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1oT0m1-001hlt-FJ for lore@lore.pengutronix.de; Tue, 30 Aug 2022 14:55:21 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1oT0m0-00050d-BM; Tue, 30 Aug 2022 14:55:20 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oT0lN-0004ZJ-Bd for ptxdist@pengutronix.de; Tue, 30 Aug 2022 14:54:41 +0200 Received: from [2a0a:edc0:0:900:1d::45] (helo=ginster) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1oT0lM-002sEy-Jd for ptxdist@pengutronix.de; Tue, 30 Aug 2022 14:54:40 +0200 Received: from jbe by ginster with local (Exim 4.94.2) (envelope-from ) id 1oT0lL-002uCz-B8 for ptxdist@pengutronix.de; Tue, 30 Aug 2022 14:54:39 +0200 From: Juergen Borleis To: ptxdist@pengutronix.de Date: Tue, 30 Aug 2022 14:54:32 +0200 Message-Id: <20220830125439.692676-1-jbe@pengutronix.de> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH 1/8] apache2: remove initV artefact 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 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.ext.pengutronix.de); SAEximRunCond expanded to false The corresponding package is gone since commit 6da485b4940906d50b48da7e6e26e84629cdf142 "apache2: remove after on year in staging" Signed-off-by: Juergen Borleis --- projectroot/etc/init.d/apache2 | 44 ---------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 projectroot/etc/init.d/apache2 diff --git a/projectroot/etc/init.d/apache2 b/projectroot/etc/init.d/apache2 deleted file mode 100644 index a8cf04f..0000000 --- a/projectroot/etc/init.d/apache2 +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -# -# /etc/init.d/apache2 -# -NAME=apache2 - -# -# This is an workaround, if the path targets into a ramfs -# -mkdir -p @LOGPATH@ - -case "$1" in - start) - echo -n "Starting $NAME: " - if /usr/sbin/apache2 -f @APACHECONFIG@ -k start; then - echo "Done" - else - echo "Failed" - fi - ;; - - stop) - echo -n "Stopping $NAME: " - if /usr/sbin/apache2 -f @APACHECONFIG@ -k stop; then - echo "Done" - else - echo "Failed" - fi - ;; - - restart) - echo -n "Restarting $NAME: " - if /usr/sbin/apache2 -f @APACHECONFIG@ -k restart; then - echo "Done" - else - echo "Failed" - fi - ;; - - *) - echo "Usage: /etc/init.d/$NAME {start|stop|restart}" - exit 1 - ;; -esac -- 2.30.2