summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2008-05-18 19:12:24 +0200
committerKai Blin <kai@samba.org>2008-06-10 09:45:28 +0200
commit223d1bce777a3ed9b8bb08e4c85535aee6118eee (patch)
treee6908d6c140c696916098dc91ca1fc03c088d064 /source3/utils
parent44c260743cc01d7fa07b66b771b94de98b5b7444 (diff)
downloadsamba-223d1bce777a3ed9b8bb08e4c85535aee6118eee.tar.gz
samba-223d1bce777a3ed9b8bb08e4c85535aee6118eee.tar.bz2
samba-223d1bce777a3ed9b8bb08e4c85535aee6118eee.zip
net: Use functable2 to give a short help text for top-level functions.
(This used to be commit e9be24a2cbbd9bc7075c0fe75d44d51184f84dba)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/net.c82
-rw-r--r--source3/utils/net_util.c3
2 files changed, 44 insertions, 41 deletions
diff --git a/source3/utils/net.c b/source3/utils/net.c
index e0edeef610..3bea5f60eb 100644
--- a/source3/utils/net.c
+++ b/source3/utils/net.c
@@ -313,51 +313,51 @@ static int net_maxrid(struct net_context *c, int argc, const char **argv)
}
/* main function table */
-static struct functable net_func[] = {
- {"RPC", net_rpc},
- {"RAP", net_rap},
- {"ADS", net_ads},
+static struct functable2 net_func[] = {
+ {"rpc", net_rpc, "Run functions using RPC transport"},
+ {"rap", net_rap, "Run functions using RAP transport"},
+ {"ads", net_ads, "Run functions using ADS transport"},
/* eventually these should auto-choose the transport ... */
- {"FILE", net_file},
- {"SHARE", net_share},
- {"SESSION", net_rap_session},
- {"SERVER", net_rap_server},
- {"DOMAIN", net_rap_domain},
- {"PRINTQ", net_rap_printq},
- {"USER", net_user},
- {"GROUP", net_group},
- {"GROUPMAP", net_groupmap},
- {"SAM", net_sam},
- {"VALIDATE", net_rap_validate},
- {"GROUPMEMBER", net_rap_groupmember},
- {"ADMIN", net_rap_admin},
- {"SERVICE", net_rap_service},
- {"PASSWORD", net_rap_password},
- {"CHANGETRUSTPW", net_changetrustpw},
- {"CHANGESECRETPW", net_changesecretpw},
- {"TIME", net_time},
- {"LOOKUP", net_lookup},
- {"JOIN", net_join},
- {"DOM", net_dom},
- {"CACHE", net_cache},
- {"GETLOCALSID", net_getlocalsid},
- {"SETLOCALSID", net_setlocalsid},
- {"SETDOMAINSID", net_setdomainsid},
- {"GETDOMAINSID", net_getdomainsid},
- {"MAXRID", net_maxrid},
- {"IDMAP", net_idmap},
- {"STATUS", net_status},
- {"USERSHARE", net_usershare},
- {"USERSIDLIST", net_usersidlist},
- {"CONF", net_conf},
- {"REGISTRY", net_registry},
+ {"file", net_file, "Functions on remote opened files"},
+ {"share", net_share, "Functions on shares"},
+ {"session", net_rap_session, "FIXME"},
+ {"server", net_rap_server, "FIXME"},
+ {"domain", net_rap_domain, "FIXME"},
+ {"printq", net_rap_printq, "FIXME"},
+ {"user", net_user, "Manage users"},
+ {"group", net_group, "Manage groups"},
+ {"groupmap", net_groupmap, "Manage group mappings"},
+ {"sam", net_sam, "Functions on the SAM database"},
+ {"validate", net_rap_validate, "FIXME"},
+ {"groupmember", net_rap_groupmember, "FIXME"},
+ {"admin", net_rap_admin, "FIXME"},
+ {"service", net_rap_service, "FIXME"},
+ {"password", net_rap_password, "FIXME"},
+ {"changetrustpw", net_changetrustpw, "Change the trust password"},
+ {"changesecretpw", net_changesecretpw, "Change the secret password"},
+ {"time", net_time, "Show/set time"},
+ {"lookup", net_lookup, "Look up host names/IP addresses"},
+ {"join", net_join, "Join a domain/AD"},
+ {"dom", net_dom, "Join/unjoin (remote) machines to/from a domain/AD"},
+ {"cache", net_cache, "Operate on the cache tdb file"},
+ {"getlocalsid", net_getlocalsid, "Get the SID for the local domain"},
+ {"setlocalsid", net_setlocalsid, "Set the SID for the local domain"},
+ {"setdomainsid", net_setdomainsid, "Get domain SID on member servers"},
+ {"getdomainsid", net_getdomainsid, "Set domain SID on member servers"},
+ {"maxrid", net_maxrid, "Display the maximul RID currently used"},
+ {"idmap", net_idmap, "IDmap functions"},
+ {"status", net_status, "Display server status"},
+ {"usershare", net_usershare, "Manage user-modifiable shares"},
+ {"usersidlist", net_usersidlist, "Display list of all users with SID"},
+ {"conf", net_conf, "Manage Samba registry based configuration"},
+ {"registry", net_registry, "Manage the Samba registry"},
#ifdef WITH_FAKE_KASERVER
- {"AFS", net_afs},
+ {"afs", net_afs, "FIXME"},
#endif
- {"HELP", net_help},
- {NULL, NULL}
+ {"help", net_help, "Print usage information"},
+ {NULL, NULL, NULL}
};
@@ -517,7 +517,7 @@ static struct functable net_func[] = {
c->opt_password = getenv("PASSWD");
}
- rc = net_run_function(c, argc_new-1, argv_new+1, net_func, net_help);
+ rc = net_run_function2(c, argc_new-1, argv_new+1, "net", net_func);
DEBUG(2,("return code = %d\n", rc));
diff --git a/source3/utils/net_util.c b/source3/utils/net_util.c
index c641e61c5c..826a2fb40f 100644
--- a/source3/utils/net_util.c
+++ b/source3/utils/net_util.c
@@ -584,6 +584,9 @@ int net_run_function2(struct net_context *c, int argc, const char **argv,
}
}
+ d_fprintf(stderr, "Invalid command: %s %s\n", whoami,
+ (argc > 0)?argv[0]:"");
+ d_printf("Usage:\n");
for (i=0; table[i].funcname != NULL; i++) {
d_printf("%s %-15s %s\n", whoami, table[i].funcname,
table[i].helptext);