diff options
author | Herb Lewis <herb@samba.org> | 2005-03-03 18:55:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:53 -0500 |
commit | 36966765e163ae0e96b3b4d44af3816a2875342f (patch) | |
tree | 4010e7ce22bf96083ab48e5b92e8fd70338f2731 | |
parent | 140752fd35bd5701b3078abf695f811d933fe893 (diff) | |
download | samba-36966765e163ae0e96b3b4d44af3816a2875342f.tar.gz samba-36966765e163ae0e96b3b4d44af3816a2875342f.tar.bz2 samba-36966765e163ae0e96b3b4d44af3816a2875342f.zip |
r5650: add help lines for net rpc group addmem and delmem commands
partial fix for Bug 2417 - we need to look for other missing
commands
(This used to be commit bd4405b41592e064428bfa0dab8f216692f0fec6)
-rw-r--r-- | source3/utils/net_help.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/utils/net_help.c b/source3/utils/net_help.c index 26d59beda2..e25316818a 100644 --- a/source3/utils/net_help.c +++ b/source3/utils/net_help.c @@ -99,6 +99,8 @@ int net_help_group(int argc, const char **argv) d_printf("\nnet [<method>] group ADD <name> [-C comment] [-c container]"\ " [misc. options] [targets]\n\tCreate specified group\n"); d_printf("\nnet rpc group MEMBERS <name>\n\tList Group Members\n\n"); + d_printf("\nnet rpc group ADDMEM <group> <member>\n\tAdd Group Members\n\n"); + d_printf("\nnet rpc group DELMEM <group> <member>\n\tDelete Group Members\n\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"); |