diff options
Diffstat (limited to 'source3/utils/net_help.c')
-rw-r--r-- | source3/utils/net_help.c | 71 |
1 files changed, 10 insertions, 61 deletions
diff --git a/source3/utils/net_help.c b/source3/utils/net_help.c index ab3eac4b434..21af8a4fd93 100644 --- a/source3/utils/net_help.c +++ b/source3/utils/net_help.c @@ -19,7 +19,6 @@ */ #include "includes.h" -#include "../utils/net.h" int net_common_methods_usage(int argc, const char**argv) { @@ -64,12 +63,12 @@ static int help_usage(int argc, const char **argv) int net_help_user(int argc, const char **argv) { - d_printf("\nnet <method> user [misc. options] [targets]\n\tList users\n"); - d_printf("\nnet <method> user DELETE <name> [misc. options] [targets]"\ + d_printf("\nnet [method] user [misc. options] [targets]\n\tList users\n"); + d_printf("\nnet [method] user DELETE <name> [misc. options] [targets]"\ "\n\tDelete specified user\n"); - d_printf("\nnet <method> user INFO <name> [misc. options] [targets]"\ + d_printf("\nnet [method] user INFO <name> [misc. options] [targets]"\ "\n\tList the domain groups of the specified user\n"); - d_printf("\nnet <method> user ADD <name> [password] [-F user flags] [misc. options]"\ + d_printf("\nnet [method] user ADD <name> [-F user flags] [misc. options]"\ " [targets]\n\tAdd specified user\n"); net_common_methods_usage(argc, argv); @@ -79,66 +78,16 @@ int net_help_user(int argc, const char **argv) return -1; } -int net_help_group(int argc, const char **argv) -{ - d_printf("net <method> group [misc. options] [targets]"\ - "\n\tList user groups\n\n"); - d_printf("net <method> group DELETE <name> [misc. options] [targets]"\ - "\n\tDelete specified group\n"); - d_printf("\nnet <method> group ADD <name> [-C comment]"\ - " [misc. options] [targets]\n\tCreate specified group\n"); - net_common_methods_usage(argc, argv); - net_common_flags_usage(argc, argv); - d_printf( - "\t-C or --comment=<comment>\tdescriptive comment (for add only)\n"); - return -1; -} - -int net_help_share(int argc, const char **argv) -{ - d_printf( - "\nnet <method> share [misc. options] [targets] \n" - "\tenumerates all exported resources (network shares) " - "on target server\n" - "\nnet <method> share ADD <name=serverpath> [misc. options] [targets]" - "\n\tAdds a share from a server (makes the export active)\n" - "\nnet <method> share DELETE <sharename> [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); - d_printf( - "\t-C or --comment=<comment>\tdescriptive comment (for add only)\n" - "\t-M or --maxusers=<num>\t\tmax users allowed for share\n"); - return -1; -} - -int net_help_file(int argc, const char **argv) -{ - d_printf("net <method> file [misc. options] [targets]\n"\ - "\tlists all open files on file server\n\n"); - d_printf("net <method> file USER <username> [misc. options] [targets]"\ - "\n\tlists all files opened by username on file server\n\n"); - d_printf("net <method> file CLOSE <id> [misc. options] [targets]\n"\ - "\tcloses specified file on target server\n\n"); - d_printf("net [rap] file INFO <id> [misc. options] [targets]\n"\ - "\tdisplays information about the specified open file\n"); - - net_common_methods_usage(argc, argv); - net_common_flags_usage(argc, argv); - return -1; -} - static int net_usage(int argc, const char **argv) { d_printf(" net time\t\tto view or set time information\n"\ " net lookup\t\tto lookup host name or ip address\n"\ " net user\t\tto manage users\n"\ - " net group\t\tto manage groups\n"\ " net join\t\tto join a domain\n"\ "\n"\ - " net ads <command>\tto run ADS commands\n"\ - " net rap <command>\tto run RAP (pre-RPC) commands\n"\ - " net rpc <command>\tto run RPC commands\n"\ + " net ads [command]\tto run ADS commands\n"\ + " net rap [command]\tto run RAP (pre-RPC) commands\n"\ + " net rpc [command]\tto run RPC commands\n"\ "\n"\ "Type \"net help <option>\" to get more information on that option\n"); return -1; @@ -154,14 +103,14 @@ int net_help(int argc, const char **argv) {"RAP", net_rap_help}, {"RPC", net_rpc_help}, - {"FILE", net_help_file}, - {"SHARE", net_help_share}, + {"FILE", net_rap_file_usage}, + {"SHARE", net_rap_share_usage}, {"SESSION", net_rap_session_usage}, {"SERVER", net_rap_server_usage}, {"DOMAIN", net_rap_domain_usage}, {"PRINTQ", net_rap_printq_usage}, {"USER", net_help_user}, - {"GROUP", net_help_group}, + {"GROUP", net_rap_group_usage}, {"VALIDATE", net_rap_validate_usage}, {"GROUPMEMBER", net_rap_groupmember_usage}, {"ADMIN", net_rap_admin_usage}, |