From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 12 Aug 2021 12:40:54 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mE88s-00086T-3D for lore@lore.pengutronix.de; Thu, 12 Aug 2021 12:40:54 +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 1mE88r-0004s5-JG; Thu, 12 Aug 2021 12:40:53 +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 1mE88G-0004RL-Hp for ptxdist@pengutronix.de; Thu, 12 Aug 2021 12:40:16 +0200 Received: from [2a0a:edc0:0:900:2e4d:54ff:fe67:bfa5] (helo=ginster) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mE88F-00035G-IB for ptxdist@pengutronix.de; Thu, 12 Aug 2021 12:40:15 +0200 Received: from jbe by ginster with local (Exim 4.92) (envelope-from ) id 1mE88F-00056H-Hg for ptxdist@pengutronix.de; Thu, 12 Aug 2021 12:40:15 +0200 From: Juergen Borleis To: ptxdist@pengutronix.de Date: Thu, 12 Aug 2021 12:40:11 +0200 Message-Id: <20210812104015.19563-1-jbe@pengutronix.de> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [ptxdist] [PATCH 1/5] 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 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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.20.1 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de