From: Git Managment for C3SL <git@xxxxxxxxxxxxxxxx> Now gitweb checks if gitweb.owner exists before trying to get filesystem's owner. Allow to use configuration variable gitweb.owner set the repository owner, it checks the gitweb.owner, if not set it uses filesystem directory's owner. Useful when we don't want to maintain project list file, and all repository directories have to have the same owner (for example when the same SSH account is shared for all projects, using ssh_acl to control access instead). Signed-off-by: Git Managment for C3SL <git@xxxxxxxxxxxxxxxx> --- gitweb/gitweb.perl | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 8ef2735..e8a43b7 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1767,7 +1767,12 @@ sub git_get_project_owner { if (exists $gitweb_project_owner->{$project}) { $owner = $gitweb_project_owner->{$project}; } - if (!defined $owner) { + + if (!defined $owner){ + $owner = git_get_project_config('owner'); + } + + if (!$owner) { $owner = get_file_owner("$projectroot/$project"); } -- 1.5.4.34.g053d9-dirty - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html