diff options
author | peter <peter@FreeBSD.org> | 2003-02-28 19:49:31 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-02-28 19:49:31 +0000 |
commit | a0393dec554654af64259886fe0b4dc93d4c2e2e (patch) | |
tree | cb0588c611b3aebfcd803dddce20e9c457be975a /Tools/scripts/addport | |
parent | cbd2ed60580c06b55f8ac6a1968a7b3e3de5a996 (diff) | |
download | FreeBSD-ports-a0393dec554654af64259886fe0b4dc93d4c2e2e.zip FreeBSD-ports-a0393dec554654af64259886fe0b4dc93d4c2e2e.tar.gz |
Update for post-repo-split. s/ncvs/pcvs/ so that the default root is
pcvs.freebsd.org:/home/pcvs
Diffstat (limited to 'Tools/scripts/addport')
-rwxr-xr-x | Tools/scripts/addport | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/scripts/addport b/Tools/scripts/addport index 33cb493..ee5a873 100755 --- a/Tools/scripts/addport +++ b/Tools/scripts/addport @@ -52,7 +52,7 @@ my $c = $opts{'c'} if ($opts{'c'} ne ""); my $nomodules = $opts{'g'}; my $distdir = $opts{'s'} if ($opts{'s'} ne ""); my $dir = $opts{'d'}; -my $h = "ncvs.FreeBSD.org"; +my $h = "pcvs.FreeBSD.org"; $h = $opts{'h'} if ($opts{'h'} ne ""); my $n = ""; $n = "-n" if $opts{'n'}; my $u = $ENV{USER}; @@ -101,10 +101,10 @@ $tmp = $tmp2 = $offset = 0; chomp(my $myhost = lc(hostname())); $moduleshost = "freefall.freebsd.org" if ($moduleshost eq ""); -# SSH is always required nowadays... ncvs.FreeBSD.org isn't shell accessible. +# SSH is always required nowadays... pcvs.FreeBSD.org isn't shell accessible. $ssh = "$ENV{CVS_RSH} $h -l $u"; $sshmod = "$ENV{CVS_RSH} -A $moduleshost -l $u"; -$repo= "$u\@$h:/home/ncvs" if !$ENV{ADDPCVSROOT}; +$repo= "$u\@$h:/home/pcvs" if !$ENV{ADDPCVSROOT}; $repo = "$ENV{ADDPCVSROOT}" if $ENV{ADDPCVSROOT}; my $cvs = "cvs -d $repo"; @@ -410,7 +410,7 @@ OPTIONS -c file Use file in place of normal log message. -f Do not fetch the distfile. -g Do not commit to CVSROOT/modules. - -h host Use a cvshost besides ncvs.FreeBSD.org. + -h host Use a cvshost besides pcvs.FreeBSD.org. -i Interactive mode; allow more control over where things are placed. This is required in order to change things like module names etc. |