Return-Path: Delivered-To: new-httpd-archive@hyperreal.org Received: (qmail 1919 invoked by uid 6000); 1 Jan 1998 03:41:29 -0000 Received: (qmail 1913 invoked from network); 1 Jan 1998 03:41:28 -0000 Received: from valis.worldgate.com (marcs@198.161.84.2) by taz.hyperreal.org with SMTP; 1 Jan 1998 03:41:28 -0000 Received: from localhost (marcs@localhost) by valis.worldgate.com (8.8.7/8.8.7) with SMTP id UAA10420 for ; Wed, 31 Dec 1997 20:41:26 -0700 (MST) Date: Wed, 31 Dec 1997 20:41:26 -0700 (MST) From: Marc Slemko To: Apache - BYOC Subject: latest redhat rpm of apache Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org (finally grabbed the utility from the rpm tools directory to strip the header junk off a .rpm, modified it to make it actually work, ran it, ungzipped, uncpioed, and looked through the latest package... /* Default administrator's address */ -#define DEFAULT_ADMIN "[no address given]" +#define DEFAULT_ADMIN "root@localhost" why!?!? why replace a valid no address with a bogus address? (ok... the above isn't in the most recent one anymore, now they just do: -ServerAdmin you@your.address +ServerAdmin root@localhost which I'm not sure helps anything... The latest Redhat 1.2 package still uses killall for log rotation: /var/log/httpd/access_log { postrotate /usr/bin/killall -HUP httpd endscript } /var/log/httpd/agent_log { postrotate /usr/bin/killall -HUP httpd endscript } /var/log/httpd/error_log { postrotate /usr/bin/killall -HUP httpd endscript } /var/log/httpd/referer_log { postrotate /usr/bin/killall -HUP httpd endscript } Sigh. And for their httpd.init script they do: stop) echo -n "Shutting down http: " killproc httpd echo rm -f /var/lock/subsys/httpd ;; (no idea what killproc does...) but restart is the silly: restart) $0 stop $0 start ;;