head	1.4;
access;
symbols
	RELEASE_9_0_0:1.3
	RELEASE_7_4_0:1.3
	RELEASE_8_2_0:1.3
	RELEASE_6_EOL:1.3
	RELEASE_8_1_0:1.3
	RELEASE_7_3_0:1.3
	RELEASE_8_0_0:1.3
	RELEASE_7_2_0:1.3
	RELEASE_7_1_0:1.3
	RELEASE_6_4_0:1.3
	RELEASE_5_EOL:1.3
	RELEASE_7_0_0:1.3
	RELEASE_6_3_0:1.3
	PRE_XORG_7:1.3
	RELEASE_4_EOL:1.3
	RELEASE_6_2_0:1.3
	RELEASE_6_1_0:1.3
	RELEASE_5_5_0:1.3
	RELEASE_6_0_0:1.3
	RELEASE_5_4_0:1.3
	RELEASE_4_11_0:1.3
	RELEASE_5_3_0:1.3
	RELEASE_4_10_0:1.3
	RELEASE_5_2_1:1.3
	RELEASE_5_2_0:1.3
	RELEASE_4_9_0:1.3
	RELEASE_5_1_0:1.3
	RELEASE_4_8_0:1.3
	RELEASE_5_0_0:1.3
	RELEASE_4_7_0:1.3
	RELEASE_4_6_2:1.3
	RELEASE_4_6_1:1.3
	RELEASE_4_6_0:1.3
	RELEASE_5_0_DP1:1.3
	RELEASE_4_5_0:1.3
	RELEASE_4_4_0:1.2
	RELEASE_4_3_0:1.2
	RELEASE_4_2_0:1.2
	RELEASE_4_1_1:1.2
	RELEASE_4_1_0:1.2
	RELEASE_3_5_0:1.2
	RELEASE_4_0_0:1.2
	RELEASE_3_4_0:1.2
	RELEASE_3_3_0:1.2
	RELEASE_3_2_0:1.1.1.1
	RELEASE_3_1_0:1.1.1.1
	RELEASE_2_2_8:1.1.1.1
	RELEASE_3_0_0:1.1.1.1
	mod_ssl_2_0_5:1.1.1.1
	RSE:1.1.1;
locks; strict;
comment	@# @;


1.4
date	2012.01.01.19.30.37;	author ohauer;	state dead;
branches;
next	1.3;

1.3
date	2001.10.22.15.38.49;	author rse;	state Exp;
branches;
next	1.2;

1.2
date	99.08.20.06.27.50;	author rse;	state Exp;
branches;
next	1.1;

1.1
date	98.08.27.16.00.05;	author rse;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	98.08.27.16.00.05;	author rse;	state Exp;
branches;
next	;


desc
@@


1.4
log
@- remove apache13 and ports depending on apache13 from portstree
  ( EXPIRATION_DATE=2012-01-01 )

with hat apache@@
@
text
@--- src/support/log_server_status.orig	Tue Jan 16 02:06:38 2001
+++ src/support/log_server_status	Mon Oct 22 20:44:59 2001
@@@@ -70,7 +70,7 @@@@
 #
 require 'sys/socket.ph';
 
-$wherelog = "/var/log/graph/";  # Logs will be like "/var/log/graph/19960312"
+$wherelog = "/var/log/httpd-status-";
 $server = "localhost";          # Name of server, could be "www.foo.com"
 $port = "80";                   # Port on server
 $request = "/status/?auto";     # Request to send
@@@@ -96,14 +96,14 @@@@
 ### Main
 
 {
-        $year=`date +%y`;
+        $year=`LC_TIME=C date +%y`;
 	chomp($year);
 	$year += ($year < 70) ? 2000 : 1900;
-	$date = $year . `date +%m%d:%H%M%S`;
+	$date = $year . `LC_TIME=C date +%m%d:%H%M%S`;
 	chomp($date);
 	($day,$time)=split(/:/,$date);
 	$res=&tcp_connect($server,$port);
-	open(OUT,">>$wherelog$day");
+	open(OUT,">>$wherelog$day.log");
 	if ($res) {
 		print OUT "$time:-1:-1:-1:-1:$res\n";
 		exit 1;
@


1.3
log
@Upgrade to Apache 1.3.22 + mod_ssl 2.8.5

Submitted by: Masahiro TAKEMURA <mastake@@msel.t.u-tokyo.ac.jp>
@
text
@@


1.2
log
@It's double-feature time:
Upgrade to Apache 1.3.9 and mod_ssl 2.4.0
@
text
@d1 3
a3 3
--- src/support/log_server_status.orig	Fri Jun  4 17:54:19 1999
+++ src/support/log_server_status	Thu Aug 19 16:30:48 1999
@@@@ -67,7 +67,7 @@@@
d12 1
a12 1
@@@@ -93,14 +93,14 @@@@
@


1.1
log
@Initial revision
@
text
@d1 29
a29 50
*** src/support/log_server_status.orig	Tue Mar 31 16:53:50 1998
--- src/support/log_server_status	Tue Apr 21 17:18:10 1998
***************
*** 67,76 ****
  #
  require 'sys/socket.ph';
  
! $wherelog = "/var/log/graph/";  # Logs will be like "/var/log/graph/960312"
  $server = "localhost";          # Name of server, could be "www.foo.com"
  $port = "80";                   # Port on server
! $request = "/status/?auto";     # Request to send
  
  sub tcp_connect
  {
--- 67,76 ----
  #
  require 'sys/socket.ph';
  
! $wherelog = "/var/log/httpd-status-";  # Logs will be like "/var/log/graph/960312"
  $server = "localhost";          # Name of server, could be "www.foo.com"
  $port = "80";                   # Port on server
! $request = "/server-status/?auto";     # Request to send
  
  sub tcp_connect
  {
***************
*** 93,103 ****
  ### Main
  
  {
! 	$date=`date +%y%m%d:%H%M%S`;
  	chop($date);
  	($day,$time)=split(/:/,$date);
  	$res=&tcp_connect($server,$port);
! 	open(OUT,">>$wherelog$day");
  	if ($res) {
  		print OUT "$time:-1:-1:-1:-1:$res\n";
  		exit 1;
--- 93,103 ----
  ### Main
  
  {
! 	$date=`LC_TIME=C date +%y%m%d:%H%M%S`;
  	chop($date);
  	($day,$time)=split(/:/,$date);
  	$res=&tcp_connect($server,$port);
! 	open(OUT,">>$wherelog$day.log");
  	if ($res) {
  		print OUT "$time:-1:-1:-1:-1:$res\n";
  		exit 1;
@


1.1.1.1
log
@Import of a new SSL-aware Apache 1.3, achieved by patching up
the original Apache 1.3.1 with mod_ssl 2.0.5 (the Apache
Interface to SSLeay).
@
text
@@
