jwoolley 01/11/11 22:47:33
Modified: perl-framework/Apache-Test/lib/Apache TestMM.pm
Log:
I was running the tests as root, which means that all of the scripts
got generated as root. The fact that the permissions were 0544 made
it pretty hard for the server which runs as nobody to execute them.
Doh. :(
Revision Changes Path
1.14 +1 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestMM.pm
Index: TestMM.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestMM.pm,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -u -r1.13 -r1.14
--- TestMM.pm 2001/10/16 20:30:57 1.13
+++ TestMM.pm 2001/11/12 06:47:33 1.14
@@ -84,7 +84,7 @@
close $out or die "close $file: $!";
close $in;
- chmod 0544, $file;
+ chmod 0555, $file;
}
sub filter_args {