At 11:52 AM 2/16/2001 +0000, you wrote:
>Can someone please help me out with the correct details for the xinetd file
>system under Redhat 7.  I am a little unsure as to the translation between
>inetd and xinetd.
>
>TIA
>
>Richard McMahon
>System Engineer
>Appropria Ltd
>
>_______________________________________________
>Info-cvs mailing list
>[EMAIL PROTECTED]
>http://mail.gnu.org/mailman/listinfo/info-cvs

You will need to use "passenv" to avoid the $HOME issue.
Do a "man xinetd.conf", it's very helpful.
Here is my xinetd config for cvspserver...

# cat cvspserver
service cvspserver
{
   socket_type         = stream
   protocol            = tcp
   wait                = no
   user                = root
   passenv             =
   group               = cvsroot
   only_from           = 192.168.200.0
   log_type            = FILE /var/log/xinetdlog
   server              = /usr/bin/cvs
   server_args         = -f --allow-root=/home/cvsroot/Firmware 
--allow-root=/home/cvsroot/hw pserver
   log_on_success     += USERID DURATION
   log_on_failure     += HOST USERID
   disable             = no
}


-Anders.


_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to