Update the man page content of *conn command, to change them to *hwconn
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3938 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
parent
d9a5adea77
commit
83320a3257
@ -1,14 +1,14 @@
|
||||
=head1 NAME
|
||||
|
||||
B<lsconn> - Use this command to display the connection status for FSP and BPA nodes.
|
||||
B<lshwconn> - Use this command to display the connection status for FSP and BPA nodes.
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
B<lsconn> [B<-h>| B<--help>]
|
||||
B<lshwconn> [B<-h>| B<--help>]
|
||||
|
||||
B<lsconn> [B<-v>| B<--version>]
|
||||
B<lshwconn> [B<-v>| B<--version>]
|
||||
|
||||
B<lsconn> [B<-V>| B<--verbose>] noderange
|
||||
B<lshwconn> [B<-V>| B<--verbose>] noderange
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
@ -42,7 +42,7 @@ Verbose output.
|
||||
|
||||
To display connection status for all FSP nodes in node group fsp:
|
||||
|
||||
lsconn fsp
|
||||
lshwconn fsp
|
||||
|
||||
Output is similar to:
|
||||
|
||||
@ -53,7 +53,7 @@ Output is similar to:
|
||||
|
||||
To display connection status for BPA node frame1:
|
||||
|
||||
lsconn frame1
|
||||
lshwconn frame1
|
||||
|
||||
Output is similar to:
|
||||
|
||||
@ -65,7 +65,7 @@ Output is similar to:
|
||||
|
||||
=head1 FILES
|
||||
|
||||
$XCATROOT/bin/lsconn
|
||||
$XCATROOT/bin/lshwconn
|
||||
|
||||
(The XCATROOT environment variable is set when xCAT is installed. The
|
||||
default value is "/opt/xcat".)
|
||||
@ -77,4 +77,4 @@ This command is part of the xCAT software product.
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<rmconn(1)|rmconn.1>, L<mkconn(1)|mkconn.1>
|
||||
L<rmhwconn(1)|rmhwconn.1>, L<mkhwconn(1)|mkhwconn.1>
|
||||
|
@ -1,16 +1,16 @@
|
||||
=head1 NAME
|
||||
|
||||
B<mkconn> - Use this command to setup connections for FSP and BPA nodes to HMC nodes.
|
||||
B<mkhwconn> - Use this command to setup connections for FSP and BPA nodes to HMC nodes.
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
B<mkconn> [B<-h>| B<--help>]
|
||||
B<mkhwconn> [B<-h>| B<--help>]
|
||||
|
||||
B<mkconn> [B<-v>| B<--version>]
|
||||
B<mkhwconn> [B<-v>| B<--version>]
|
||||
|
||||
B<mkconn> [B<-V>| B<--verbose>] noderange B<-t>
|
||||
B<mkhwconn> [B<-V>| B<--verbose>] noderange B<-t>
|
||||
|
||||
B<mkconn> [B<-V>| B<--verbose>] noderange B<-H> hmc [B<-P> passwd]
|
||||
B<mkhwconn> [B<-V>| B<--verbose>] noderange B<-H> hmc [B<-P> passwd]
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
@ -65,20 +65,20 @@ Verbose output.
|
||||
|
||||
To setup the connection for all FSP nodes in node group fsp, according to the definition in xCAT DB:
|
||||
|
||||
mkconn fsp -t
|
||||
mkhwconn fsp -t
|
||||
|
||||
=item 2.
|
||||
|
||||
To setup the connection for BPA nodes in node group frame_grp1 to HMC node hmc1, with password 'abc123':
|
||||
|
||||
mkconn frame_grp1 -H hmc1 -P abc123
|
||||
mkhwconn frame_grp1 -H hmc1 -P abc123
|
||||
|
||||
=back
|
||||
|
||||
|
||||
=head1 FILES
|
||||
|
||||
$XCATROOT/bin/mkconn
|
||||
$XCATROOT/bin/mkhwconn
|
||||
|
||||
(The XCATROOT environment variable is set when xCAT is installed. The
|
||||
default value is "/opt/xcat".)
|
||||
@ -90,4 +90,4 @@ This command is part of the xCAT software product.
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<lsconn(1)|lsconn.1>, L<rmconn(1)|rmconn.1>
|
||||
L<lshwconn(1)|lshwconn.1>, L<rmhwconn(1)|rmhwconn.1>
|
||||
|
@ -1,14 +1,14 @@
|
||||
=head1 NAME
|
||||
|
||||
B<rmconn> - Use this command to remove connections from FSP and BPA nodes to HMC nodes.
|
||||
B<rmhwconn> - Use this command to remove connections from FSP and BPA nodes to HMC nodes.
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
B<rmconn> [B<-h>| B<--help>]
|
||||
B<rmhwconn> [B<-h>| B<--help>]
|
||||
|
||||
B<rmconn> [B<-v>| B<--version>]
|
||||
B<rmhwconn> [B<-v>| B<--version>]
|
||||
|
||||
B<rmconn> [B<-V>| B<--verbose>] noderange
|
||||
B<rmhwconn> [B<-V>| B<--verbose>] noderange
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
@ -45,20 +45,20 @@ Verbose output.
|
||||
|
||||
To disconnect all FSP nodes in node group fsp from their HMC nodes:
|
||||
|
||||
rmconn fsp
|
||||
rmhwconn fsp
|
||||
|
||||
=item 2.
|
||||
|
||||
To remove the connection for BPA node frame1:
|
||||
|
||||
rmconn frame1
|
||||
rmhwconn frame1
|
||||
|
||||
=back
|
||||
|
||||
|
||||
=head1 FILES
|
||||
|
||||
$XCATROOT/bin/rmconn
|
||||
$XCATROOT/bin/rmhwconn
|
||||
|
||||
(The XCATROOT environment variable is set when xCAT is installed. The
|
||||
default value is "/opt/xcat".)
|
||||
@ -70,4 +70,4 @@ This command is part of the xCAT software product.
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<lsconn(1)|lsconn.1>, L<mkconn(1)|mkconn.1>
|
||||
L<lshwconn(1)|lshwconn.1>, L<mkhwconn(1)|mkhwconn.1>
|
||||
|
Loading…
Reference in New Issue
Block a user