diff options
Diffstat (limited to 'source4/utils/net/drs/net_drs.c')
-rw-r--r-- | source4/utils/net/drs/net_drs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/utils/net/drs/net_drs.c b/source4/utils/net/drs/net_drs.c index 1ba6eea576..0fd4781882 100644 --- a/source4/utils/net/drs/net_drs.c +++ b/source4/utils/net/drs/net_drs.c @@ -37,6 +37,8 @@ static const struct net_functable net_drs_functable[] = { net_drs_kcc_cmd, net_drs_kcc_usage }, { "replicate", "Triggers replication event for the specified naming context between the source and destination domain controllers.\n", net_drs_replicate_cmd, net_drs_replicate_usage }, + { "showrepl", "Displays the replication partners for each directory partition on the specified domain controller.\n", + net_drs_showrepl_cmd, net_drs_showrepl_usage }, { NULL, NULL } }; @@ -59,6 +61,7 @@ int net_drs_usage(struct net_context *ctx, int argc, const char **argv) d_printf(" bind - Display DC replication features\n"); d_printf(" kcc - Forces the KCC to recalculate replication topology for a specified domain controller\n"); d_printf(" replicate - Triggers replication event for the specified naming context between the source and destination domain controllers.\n"); + d_printf(" showrepl - Displays the replication partners for each directory partition on the specified domain controller.\n"); return 0; } |