1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

net: add the "net idmap set secret" subcommand as alias for "net idmap secret"

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
This commit is contained in:
Michael Adam 2013-09-09 17:13:47 +02:00
parent a064119cf2
commit 68c4414fa5

View File

@ -615,7 +615,7 @@ static int net_idmap_secret(struct net_context *c, int argc, const char **argv)
if (argc != 2 || c->display_usage) {
d_printf("%s\n%s",
_("Usage:\n"),
_("net idmap secret <DOMAIN> <secret>\n"
_("net idmap set secret <DOMAIN> <secret>\n"
" Set the secret for the specified domain\n"
" DOMAIN\tDomain to set secret for.\n"
" secret\tNew secret to set.\n"));
@ -677,6 +677,14 @@ static int net_idmap_set(struct net_context *c, int argc, const char **argv)
N_("net idmap set mapping\n"
" Not implemented yet")
},
{
"secret",
net_idmap_secret,
NET_TRANSPORT_LOCAL,
N_("Set secret for specified domain"),
N_("net idmap set secret <DOMAIN> <secret>\n"
" Set secret for specified domain")
},
{NULL, NULL, 0, NULL, NULL}
};