Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 83237 invoked from network); 6 Oct 2010 10:39:33 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 6 Oct 2010 10:39:33 -0000 Received: (qmail 76384 invoked by uid 500); 6 Oct 2010 10:39:32 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 76187 invoked by uid 500); 6 Oct 2010 10:39:31 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 76180 invoked by uid 99); 6 Oct 2010 10:39:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Oct 2010 10:39:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Oct 2010 10:39:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D90D623888E7; Wed, 6 Oct 2010 10:39:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1004978 - /httpd/httpd/branches/2.2.x/build/NWGNUscripts.inc Date: Wed, 06 Oct 2010 10:39:09 -0000 To: cvs@httpd.apache.org From: fuankg@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101006103909.D90D623888E7@eris.apache.org> Author: fuankg Date: Wed Oct 6 10:39:09 2010 New Revision: 1004978 URL: http://svn.apache.org/viewvc?rev=1004978&view=rev Log: Added NetWare auto restart script. Modified: httpd/httpd/branches/2.2.x/build/NWGNUscripts.inc Modified: httpd/httpd/branches/2.2.x/build/NWGNUscripts.inc URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/build/NWGNUscripts.inc?rev=1004978&r1=1004977&r2=1004978&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/build/NWGNUscripts.inc (original) +++ httpd/httpd/branches/2.2.x/build/NWGNUscripts.inc Wed Oct 6 10:39:09 2010 @@ -1,6 +1,6 @@ # Include for creating start/stop/restart NCF scripts. -instscripts:: FORCE $(INSTALL)/$(BASEDIR)/ap2start.ncf $(INSTALL)/$(BASEDIR)/ap2rest.ncf $(INSTALL)/$(BASEDIR)/ap2stop.ncf $(INSTALL)/$(BASEDIR)/ap2prod.ncf +instscripts:: FORCE $(INSTALL)/$(BASEDIR)/ap2start.ncf $(INSTALL)/$(BASEDIR)/ap2auto.ncf $(INSTALL)/$(BASEDIR)/ap2rest.ncf $(INSTALL)/$(BASEDIR)/ap2stop.ncf $(INSTALL)/$(BASEDIR)/ap2prod.ncf $(INSTALL)/$(BASEDIR)/ap2start.ncf: @echo # NCF to start Apache 2.x in own address space > $@ @@ -12,6 +12,17 @@ $(INSTALL)/$(BASEDIR)/ap2start.ncf: @echo # load $(BASEDIR)/apache2 >> $@ @echo. >> $@ +$(INSTALL)/$(BASEDIR)/ap2auto.ncf: + @echo # NCF to start Apache 2.x in own address space > $@ + @echo # and let automatically restart in case it crashes >> $@ + @echo # Make sure that httpstk isn't listening on 80 >> $@ + @echo # httpcloseport 80 /silent >> $@ + @echo # search add SYS:/$(BASEDIR) >> $@ + @echo restart address space = $(BASEDIR) SYS:/$(BASEDIR)/apache2 >> $@ + @echo # If you have problems with 3rd-party modules try to load in OS space. >> $@ + @echo # load $(BASEDIR)/apache2 >> $@ + @echo. >> $@ + $(INSTALL)/$(BASEDIR)/ap2rest.ncf: @echo # NCF to restart Apache 2.x in own address space > $@ @echo apache2 restart -p $(BASEDIR) >> $@