From: des Date: Thu, 14 Jun 2007 16:47:13 +0000 (+0000) Subject: Remove -T now that the framework runs as an unprivileged user. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ec6e0cff42452ce95bef18462de0c5f2aa24318;p=varnish Remove -T now that the framework runs as an unprivileged user. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1518 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-tools/regress/lib/Varnish/Test.pm b/varnish-tools/regress/lib/Varnish/Test.pm index 1ae8da24..defd5af8 100644 --- a/varnish-tools/regress/lib/Varnish/Test.pm +++ b/varnish-tools/regress/lib/Varnish/Test.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved. diff --git a/varnish-tools/regress/lib/Varnish/Test/Case.pm b/varnish-tools/regress/lib/Varnish/Test/Case.pm index 8414093f..373da5ee 100644 --- a/varnish-tools/regress/lib/Varnish/Test/Case.pm +++ b/varnish-tools/regress/lib/Varnish/Test/Case.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved. diff --git a/varnish-tools/regress/lib/Varnish/Test/Case/Ticket056.pm b/varnish-tools/regress/lib/Varnish/Test/Case/Ticket056.pm index ce35c069..911e8e7c 100644 --- a/varnish-tools/regress/lib/Varnish/Test/Case/Ticket056.pm +++ b/varnish-tools/regress/lib/Varnish/Test/Case/Ticket056.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved. diff --git a/varnish-tools/regress/lib/Varnish/Test/Case/Ticket102.pm b/varnish-tools/regress/lib/Varnish/Test/Case/Ticket102.pm index df0a30ee..2622fc92 100644 --- a/varnish-tools/regress/lib/Varnish/Test/Case/Ticket102.pm +++ b/varnish-tools/regress/lib/Varnish/Test/Case/Ticket102.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved. diff --git a/varnish-tools/regress/lib/Varnish/Test/Case/Vary.pm b/varnish-tools/regress/lib/Varnish/Test/Case/Vary.pm index 7cb3c4f5..25e0508d 100644 --- a/varnish-tools/regress/lib/Varnish/Test/Case/Vary.pm +++ b/varnish-tools/regress/lib/Varnish/Test/Case/Vary.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved. diff --git a/varnish-tools/regress/lib/Varnish/Test/Client.pm b/varnish-tools/regress/lib/Varnish/Test/Client.pm index 8969aefc..dd8452cc 100644 --- a/varnish-tools/regress/lib/Varnish/Test/Client.pm +++ b/varnish-tools/regress/lib/Varnish/Test/Client.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved. diff --git a/varnish-tools/regress/lib/Varnish/Test/Engine.pm b/varnish-tools/regress/lib/Varnish/Test/Engine.pm index 995b1211..d5d08391 100644 --- a/varnish-tools/regress/lib/Varnish/Test/Engine.pm +++ b/varnish-tools/regress/lib/Varnish/Test/Engine.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved. diff --git a/varnish-tools/regress/lib/Varnish/Test/Logger.pm b/varnish-tools/regress/lib/Varnish/Test/Logger.pm index 664b10e9..4276d48a 100644 --- a/varnish-tools/regress/lib/Varnish/Test/Logger.pm +++ b/varnish-tools/regress/lib/Varnish/Test/Logger.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved. diff --git a/varnish-tools/regress/lib/Varnish/Test/Server.pm b/varnish-tools/regress/lib/Varnish/Test/Server.pm index 97a766fd..1e1bdcf3 100644 --- a/varnish-tools/regress/lib/Varnish/Test/Server.pm +++ b/varnish-tools/regress/lib/Varnish/Test/Server.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved. diff --git a/varnish-tools/regress/lib/Varnish/Test/Varnish.pm b/varnish-tools/regress/lib/Varnish/Test/Varnish.pm index 49e62a48..b48d2fc2 100644 --- a/varnish-tools/regress/lib/Varnish/Test/Varnish.pm +++ b/varnish-tools/regress/lib/Varnish/Test/Varnish.pm @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved. @@ -80,7 +80,6 @@ sub new($$;$) { print STDERR sprintf("Starting Varnish with options: %s\n", join(' ', @opts)); - $ENV{'PATH'} = '/opt/varnish/sbin:/bin:/usr/bin'; exec('varnishd', @opts); exit(1); } diff --git a/varnish-tools/regress/varnish-regress.pl b/varnish-tools/regress/varnish-regress.pl index 4c5efe57..9d576f5c 100755 --- a/varnish-tools/regress/varnish-regress.pl +++ b/varnish-tools/regress/varnish-regress.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl -Tw +#!/usr/bin/perl -w #- # Copyright (c) 2006 Linpro AS # All rights reserved.