Update of /cvsroot/linux-decnet/dnprogs/apps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3319/apps
Modified Files:
Makefile
Added Files:
dncopynodes.8
Removed Files:
copynodes.8
Log Message:
Rename copynodes to dncopynodes
--- NEW FILE: dncopynodes.8 ---
.TH DNCOPYNODES 8 "September 03 2008" "DECnet utilities"
.SH NAME
dncopynodes \- copy a list of nodes from a remote DEC system
.SH SYNOPSIS
.B dncopynodes <nodename>
.br
.SH DESCRIPTION
.PP
.br
This program will generate a decnet.conf file by contacting a remote
DECnet host (running VMS or RSX-11 probably) and doing the equivalent of
"NCP COPY KNOWN NODES". The resulting file can be copied over
the existing decnet.conf file if you like.
.br
You do need a fully-functioning DECnet system before using this command
but you don't need any nodes other than the executor defined in
decnet.conf.
.B dncopynodes
will copy the executor information already there
into the new file.
.br
The program copies its output to standard output. It is strongly recommended
that you review it before replacing an existing /etc/decnet.conf file.
.br
The node name can also be a node address if you don't have any nodes defined in
your existing decnet.conf.
.br
DO NOT attempt to redirect the output of
.B dncopynodes
directly into /etc/decnet.conf. It will fail and destroy your existing
configuration file! Send it to a temporary file and then copy it (see EXAMPLES)
.SH EXAMPLE
# dncopynodes 3.34 > /tmp/decnet.conf
.br
# mv /tmp/decnet.conf /etc
.SH SEE ALSO
.BR decnet.conf "(5), " setether "(8)"
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/apps/Makefile,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** Makefile 3 Sep 2008 15:24:50 -0000 1.14
--- Makefile 4 Sep 2008 16:02:22 -0000 1.15
***************
*** 21,28 ****
PROG5 = ctermd
PROG7 = rmtermd
! PROG8 = copynodes
MANPAGES1 = sethost.1 dnping.1
MANPAGES5 = decnet.conf.5
! MANPAGES8 = ctermd.8 rmtermd.8 setether.8 copynodes.8
ALLPROGS=$(PROG1) $(PROG2) $(PROG4) $(PROG5) $(PROG7) $(PROG8)
--- 21,28 ----
PROG5 = ctermd
PROG7 = rmtermd
! PROG8 = dncopynodes
MANPAGES1 = sethost.1 dnping.1
MANPAGES5 = decnet.conf.5
! MANPAGES8 = ctermd.8 rmtermd.8 setether.8 dncopynodes.8
ALLPROGS=$(PROG1) $(PROG2) $(PROG4) $(PROG5) $(PROG7) $(PROG8)
--- copynodes.8 DELETED ---
|