diff options
author | Volker Lendecke <vlendec@samba.org> | 2004-02-26 11:29:56 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2004-02-26 11:29:56 +0000 |
commit | d9819ec090bb533b79a257daa3461045c2422c05 (patch) | |
tree | 7569115240c6727ef4590b1bd854650a2093c207 /source3/utils/net.h | |
parent | e692b991d1c706261bf8efe16d9f8eedae8b1b3d (diff) | |
download | samba-d9819ec090bb533b79a257daa3461045c2422c05.tar.gz samba-d9819ec090bb533b79a257daa3461045c2422c05.tar.xz samba-d9819ec090bb533b79a257daa3461045c2422c05.zip |
Implement 'net groupmap set' and 'net groupmap cleanup'.
I was rather annoyed by the net groupmap syntax, I could never get it
right.
net groupmap set "domain admins" domadm
creates a mapping,
net groupmap set "domain admins" -C "Comment" -N "newntname"
should also do what you expect. I'd like to have some feedback on the usability
of this.
net groupmap cleanup
solves a problem I've had two times now: Our SID changed, and a user's primary
group was mapped to a SID that is not ours. net groupmap cleanup removes all
mappings that are not from our domain sid.
Volker
(This used to be commit eb4d4faff8c14e999f414ca5b6e8c25a558859c8)
Diffstat (limited to 'source3/utils/net.h')
-rw-r--r-- | source3/utils/net.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/utils/net.h b/source3/utils/net.h index 94e6de9d181..62d5a742375 100644 --- a/source3/utils/net.h +++ b/source3/utils/net.h @@ -57,6 +57,11 @@ extern const char *opt_user_name; extern const char *opt_password; extern BOOL opt_user_specified; +extern BOOL opt_localgroup; +extern BOOL opt_domaingroup; +extern const char *opt_newntname; +extern int opt_rid; + extern BOOL opt_have_ip; extern struct in_addr opt_dest_ip; |