diff options
-rw-r--r-- | source3/utils/net_idmap.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source3/utils/net_idmap.c b/source3/utils/net_idmap.c index 80dc0424ce..a581e83d0d 100644 --- a/source3/utils/net_idmap.c +++ b/source3/utils/net_idmap.c @@ -808,6 +808,15 @@ static int net_idmap_set(struct net_context *c, int argc, const char **argv) return net_run_function(c, argc, argv, "net idmap set", func); } +static int net_idmap_get(struct net_context *c, int argc, const char **argv) +{ + struct functable func[] = { + {NULL, NULL, 0, NULL, NULL} + }; + + return net_run_function(c, argc, argv, "net idmap get", func); +} + static int net_idmap_check(struct net_context *c, int argc, const char **argv) { const char* dbfile; @@ -877,6 +886,14 @@ int net_idmap(struct net_context *c, int argc, const char **argv) " Restore entries from stdin") }, { + "get", + net_idmap_get, + NET_TRANSPORT_LOCAL, + N_("Read data from the ID mapping database"), + N_("net idmap get\n" + " Read data from the ID mapping database") + }, + { "set", net_idmap_set, NET_TRANSPORT_LOCAL, |