I want to secure some git repositories and using only users and groups is not sufficient.
I'm thinking about using ACLs to control the access.
The access to the repositories is local, the users have shell access.
I want to secure some git repositories and using only users and groups is not sufficient.
I'm thinking about using ACLs to control the access.
The access to the repositories is local, the users have shell access.
You should check out AIX acls.
I was going to suggest looking at the options provided by
git init --shared=
, but you preempted that by saying "using only users and groups is not sufficient." So I think your options are:Please be more specific. How are the users getting to the repositories as it is? Why are users and groups insufficient?
Reflecting the comment on the previous, ACLs might indeed be the way to go. It's fairly easy either to grant users access individually, or to give the group access and block certain users. The tutorial here may be useful.