From acfa3a679c806f9694b8618585c8874cc32ae1ad Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Sat, 9 Nov 2002 18:01:27 +0000 Subject: Add net help join text, from Steve Langasek. Also update the other commands to his correct example of [], since it is optional. Thanks, Steve. (This used to be commit 307d942ccdff01e471e7fe3fa66d5cc21cecf64d) --- source3/utils/net_help.c | 47 ++++++++++++++++++++++++++++++++--------------- 1 file changed, 32 insertions(+), 15 deletions(-) diff --git a/source3/utils/net_help.c b/source3/utils/net_help.c index 262670cb2a..fc0fdd0f09 100644 --- a/source3/utils/net_help.c +++ b/source3/utils/net_help.c @@ -64,12 +64,14 @@ static int help_usage(int argc, const char **argv) int net_help_user(int argc, const char **argv) { - d_printf("\nnet user [misc. options] [targets]\n\tList users\n"); - d_printf("\nnet user DELETE [misc. options] [targets]"\ + d_printf("\nnet [] user [misc. options] [targets]"\ + "\n\tList users\n\n"); + d_printf("net [] user DELETE [misc. options] [targets]"\ "\n\tDelete specified user\n"); - d_printf("\nnet user INFO [misc. options] [targets]"\ + d_printf("\nnet [] user INFO [misc. options] [targets]"\ "\n\tList the domain groups of the specified user\n"); - d_printf("\nnet user ADD [password] [-F user flags] [misc. options]"\ + d_printf("\nnet [] user ADD [password] "\ + "[-F user flags] [misc. options]"\ " [targets]\n\tAdd specified user\n"); net_common_methods_usage(argc, argv); @@ -81,11 +83,12 @@ int net_help_user(int argc, const char **argv) int net_help_group(int argc, const char **argv) { - d_printf("net group [misc. options] [targets]"\ + d_printf("net [] group [misc. options] [targets]"\ "\n\tList user groups\n\n"); - d_printf("net group DELETE [misc. options] [targets]"\ + d_printf("net [] group DELETE "\ + "[misc. options] [targets]"\ "\n\tDelete specified group\n"); - d_printf("\nnet group ADD [-C comment]"\ + d_printf("\nnet [] group ADD [-C comment]"\ " [misc. options] [targets]\n\tCreate specified group\n"); net_common_methods_usage(argc, argv); net_common_flags_usage(argc, argv); @@ -94,15 +97,27 @@ int net_help_group(int argc, const char **argv) return -1; } + +int net_help_join(int argc, const char **argv) +{ + d_printf("\nnet [] join [misc. options]\n" + "\tjoins this server to a domain\n"); + d_printf("Valid methods: (auto-detected if not specified)\n"); + d_printf("\tads\t\t\t\tActive Directory (LDAP/Kerberos)\n"); + d_printf("\trpc\t\t\t\tDCE-RPC\n"); + net_common_flags_usage(argc, argv); + return -1; +} + int net_help_share(int argc, const char **argv) { d_printf( - "\nnet share [misc. options] [targets] \n" + "\nnet [] share [misc. options] [targets] \n" "\tenumerates all exported resources (network shares) " - "on target server\n" - "\nnet share ADD [misc. options] [targets]" - "\n\tAdds a share from a server (makes the export active)\n" - "\nnet share DELETE [misc. options] [targets]\n" + "on target server\n\n" + "net [] share ADD [misc. options] [targets]" + "\n\tAdds a share from a server (makes the export active)\n\n" + "net [] share DELETE [misc. options] [targets]\n" "\n\tDeletes a share from a server (makes the export inactive)\n"); net_common_methods_usage(argc, argv); net_common_flags_usage(argc, argv); @@ -114,11 +129,12 @@ int net_help_share(int argc, const char **argv) int net_help_file(int argc, const char **argv) { - d_printf("net file [misc. options] [targets]\n"\ + d_printf("net [] file [misc. options] [targets]\n"\ "\tlists all open files on file server\n\n"); - d_printf("net file USER [misc. options] [targets]"\ + d_printf("net [] file USER "\ + "[misc. options] [targets]"\ "\n\tlists all files opened by username on file server\n\n"); - d_printf("net file CLOSE [misc. options] [targets]\n"\ + d_printf("net [] file CLOSE [misc. options] [targets]\n"\ "\tcloses specified file on target server\n\n"); d_printf("net [rap] file INFO [misc. options] [targets]\n"\ "\tdisplays information about the specified open file\n"); @@ -165,6 +181,7 @@ int net_help(int argc, const char **argv) {"PRINTQ", net_rap_printq_usage}, {"USER", net_help_user}, {"GROUP", net_help_group}, + {"JOIN", net_help_join}, {"VALIDATE", net_rap_validate_usage}, {"GROUPMEMBER", net_rap_groupmember_usage}, {"ADMIN", net_rap_admin_usage}, -- cgit