From: zach%zachlipton.com <> Date: Wed, 23 Apr 2003 21:10:18 +0000 (+0000) Subject: Fix (on the 2.16 branch) for bug 160279: checksetup.pl doesn't check permission on... X-Git-Tag: bugzilla-2.16.3~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38c295f9a3a5ff47ca4fb6f242353591e58f9669;p=thirdparty%2Fbugzilla.git Fix (on the 2.16 branch) for bug 160279: checksetup.pl doesn't check permission on data/comments. Patch adds a fixPerms() call for data/comments. Patch by Steve Wadsworth , r,a=justdave, patch typo fix by me. --- diff --git a/checksetup.pl b/checksetup.pl index fd2ffa3370..d86c12b2a2 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1112,6 +1112,7 @@ if ($my_webservergroup) { fixPerms('data/webdot', $<, $webservergid, 007, 1); fixPerms('data/webdot/.htaccess', $<, $webservergid, 027); fixPerms('data/params', $<, $webservergid, 017); + fixPerms('data/comments', $<, $webservergid, 017); fixPerms('*', $<, $webservergid, 027); fixPerms('template', $<, $webservergid, 027, 1); fixPerms('css', $<, $webservergid, 027, 1);