The OpenNET Project / Index page

[ новости /+++ | форум | теги | ]

Поиск:  Каталог документации / Документация по FreeBSD / Руководства по FreeBSD на английском

3 FreeBSD specific setup

The FreeBSD project itself uses a slightly different setup, which also uses files from the freebsd subdirectory of the FreeBSD CVSROOT. The project uses this because of the large number of committers, which all would have to be in the same group. So, a simple wrapper was written which ensures that people have the correct credentials to commit, and then sets the group id to that of the repository.

If your repository also needs this, the steps to set this up are documented below. But first an overview of the files involved.

3.1 Files used in the FreeBSD setup



3.2 The procedure

  1. Edit the access file to contain only your username.

  2. Edit cvswrap.c to contain the correct path for your setup. This is defined in a macro named ACCESS. You should also change the location of the real cvs binary if it is not appropriate to your situation. The stock cvswrap.c expects to be a replacement for the systemwide cvs command, which will be moved to /usr/bin/ncvs.

    My copy of cvswrap.c has this:

        #define ACCESS "/local/cvsroot/CVSROOT/access"
        #define REALCVS "/usr/bin/ncvs"
    
  3. Next up is installing the wrapper to ensure you become the correct group when committing. The sources for this live in cvswrap.c in your CVSROOT.

    Compile the sources that you edited to include the correct paths:

        % cc -o cvs cvswrap.c
    
    And then install them (you have to be root for this step):
        # mv /usr/bin/cvs /usr/bin/ncvs
        # mv cvs /usr/bin/cvs
        # chown root:ncvs /usr/bin/cvs /usr/bin/ncvs
        # chmod o-rx /usr/bin/ncvs
        # chmod u-w,g+s /usr/bin/cvs
    
    This installs the wrapper as the default cvs command, making sure that anyone who wants to use the repository has to have the correct access levels.

  4. You can now remove everyone from your repository group. All access control is done by your wrapper, and this wrapper will set the correct group for access.

3.3 Testing the setup

Your wrapper should now be setup. You can of course test this by making a forced commit to the access file:

    % cvs commit -f -m 'Forced commit to test the new CVSROOT scripts' access
Again, if this fails, check to see whether all of the above steps have been executed correctly.

This, and other documents, can be downloaded from ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/.

For questions about FreeBSD, read the documentation before contacting <questions@FreeBSD.org>.
For questions about this documentation, e-mail <doc@FreeBSD.org>.




Партнёры:
PostgresPro
Inferno Solutions
Hosting by Hoster.ru
Хостинг:

Закладки на сайте
Проследить за страницей
Created 1996-2024 by Maxim Chirkov
Добавить, Поддержать, Вебмастеру