diff options
author | Byron Jones <glob@mozilla.com> | 2015-07-28 07:38:56 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-07-28 07:38:56 +0200 |
commit | 61efd94060363e2734270a73c2070f3d639cb284 (patch) | |
tree | 0cc92f810ee2938f2a6b2599fb15a1b0f710f74a /Bugzilla/Install | |
parent | bc054c72828ac3a3e2564b7affb3f396a9d1c479 (diff) | |
download | bugzilla-61efd94060363e2734270a73c2070f3d639cb284.tar.gz bugzilla-61efd94060363e2734270a73c2070f3d639cb284.tar.xz |
no bug - fix permissions of google verification files
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 34d0ee4ab..41aaaa54d 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -188,6 +188,9 @@ sub FILESYSTEM { "$extensionsdir/create.pl" => { perms => OWNER_EXECUTE }, "$extensionsdir/*/*.pl" => { perms => WS_EXECUTE }, "$extensionsdir/*/bin/*" => { perms => WS_EXECUTE }, + + # google webmaster tools verification files + 'google*.html' => { perms => WS_SERVE }, ); # Directories that we want to set the perms on, but not |