From 4d4f8bffef2aae8659c8f8d2de7e85944f3b0da6 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 10 Sep 2009 11:07:09 +0200 Subject: tests:webserver: make pid-file, log-dir and doc-root reside in /tmp by default So simply starting the server will work. Michael --- tests/scripts/webserver.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/scripts') diff --git a/tests/scripts/webserver.pl b/tests/scripts/webserver.pl index 99f6c40..195d40c 100755 --- a/tests/scripts/webserver.pl +++ b/tests/scripts/webserver.pl @@ -23,11 +23,11 @@ my $EOL = "\015\012"; my $port = 2345; my $proto = getprotobyname('tcp'); -my $pid_file = "./webserver.pid"; -my $log_dir = "./"; +my $pid_file = "/tmp/webserver.pid"; +my $log_dir = "/tmp"; my $access_log_file; my $error_log_file; -my $document_root = "./"; +my $document_root = "/tmp"; my $help = 0; sub create_child($$$); -- cgit v1.2.3