Can I create a preliminary check cvs hook

I would like to prevent some users from checking some code modules in my cvs repository. I have already implemented hooks that do not allow the same users to execute code in a particular module, but I see no way to prevent verification of the same module.

Does anyone know how to prevent some modules from using CVS checks?

+2
version-control cvs
source share
1 answer

This thread mentions the cvs_acls script in the CVS source distribution in the contrib / directory.
He can do what you seek.

Ex. TAG1 , TAG2 , TAG3 , TAG4 , TAG5
the checkout / update / export operation for TAG1 and TAG2 should fail. ( cvs co -r TAG1 mod_dir )

the original script is intended only to prevent commit, but it can also be fixed to prevent validation.
Additional alternatives are provided in this CVS FAQ .

+1
source share

All Articles