Download the appropriate binary from
http://www.nongnu.org/cvs
# create a "cvs" user. This user will be used to impersonate cvs' users$ mkdir /export/home/cvsroot
# create the CVS repository
$ useradd -d /home/cvs -c "CVS Owner" cvs$ cvs -d /path_to_repository
#Add the following to /etc/servicescvspserver 2401/tcp # CVS Client/server operations
#Place this following line in a file called "cvs_inetd"
cvspserver 2401/udp # CVS Client/server operationscvspserver stream tcp nowait root /path_to_cvs_executable -f \
# import the service into smf
--allow-root=/path_to_cvs_repository pserver$ inetconv -f -i ./cvs_inetd
#Add the following lines to /var/svc/profile/inetd_services.xml
cvspserver -> /var/svc/manifest/network/cvspserver-tcp.xml
Importing cvspserver-tcp.xml …Done<service name='network/cvspserver-tcp' version='1' type='service'>
#Restart the network
<instance name='default' enabled='true'/>
</service>$ svcadm restart svc:/network/inetd:default
You're done. Your pserver should be listening on port 2401
#Script to create cvs users
#!/usr/bin/perl
$cvsroot="/path_to_cvs_root";
$user = shift @ARGV || die "cvspasswd user\n";
print "Enter password for $user: ";
system "stty -echo";
chomp ($plain = <>);
system "stty echo";
print "\n";
@chars = ('A'..'Z', 'a'..'z', '0'..'9');
$salt = $chars[rand(@chars)] . $chars[rand(@chars)];
$passwd = crypt($plain, $salt);
open(PASSWD,">>$cvsroot/CVSROOT/passwd") || die("Cannot Open File");
print PASSWD "$user:$passwd:cvs\n";
close PASSWD;
#-End
$ perl createcvspasswd.pl your_cvs_user
Install and configure CVS on Solaris 10
By
Unknown
Install and configure CVS on Solaris 10 - How are you, friend? welcome to our blog super full Tech News, well now we will discuss the information you find on the search engines like google and other information that will we say this time is Install and configure CVS on Solaris 10, we always strive to show you the complete information for you, all right please see:
Articles : Install and configure CVS on Solaris 10
full Link : Install and configure CVS on Solaris 10
Articles : Install and configure CVS on Solaris 10
full Link : Install and configure CVS on Solaris 10
You can also see our article on:
Install and configure CVS on Solaris 10
Information about the Install and configure CVS on Solaris 10 we have conveyed
A few of our information about the Install and configure CVS on Solaris 10, I hope you can exploit carefully
You have finished reading Install and configure CVS on Solaris 10 and many articles about Tech News in our blog this, please read it. and url link of this article is https://hibbydabby.blogspot.com/2008/09/install-and-configure-cvs-on-solaris-10.html Hopefully discussion articles on provide more knowledge about the world of new tech gadgets and tech news.
Tag :
Tags :
Related : Install and configure CVS on Solaris 10
Subscribe to:
Post Comments (Atom)
0 komentar:
Post a Comment