Can you share with me? :) On Fri, Dec 1, 2017 at 4:43 PM, Rowland Penny via samba < samba at lists.samba.org> wrote:> On Fri, 1 Dec 2017 16:27:11 -0200 > Elias Pereira <empbilly at gmail.com> wrote: > > > Rowland, > > > > I found something related that you were doing. > > > > "[PATCH] samba-tool: Easily edit a users object in AD" > > > > Did you finish the script? > > > > Yes, it went into 4.7.0, it works just like a combination of ldbsearch > and ldbedit, but you just need to supply a username. > > Rowland > > > -- > To unsubscribe from this list go to the following URL and read the > instructions: https://lists.samba.org/mailman/options/samba >-- Elias Pereira
On Fri, 1 Dec 2017 16:51:57 -0200 Elias Pereira <empbilly at gmail.com> wrote:> Can you share with me? :)Download the latest Samba tarball and unpack it, you will find it as part of user.py in: samba-4.7.3 --> python --> samba --> netcmd Rowland
Found it! :)
I thought in make a script more or less that way.
#!/bin/bash
#
GROUP=ADM
GUID=10000      # Domain Users
UID=10000         # get the next ID ?
for USER in $(samba-tool group listmembers $GROUP)
do
    samba-tool user edit $USER -H ldap://samdom.example.com \
    -U administrato --nis-domain=samdom \
    --unix-home=/home/$USER \
    --uid-number=${NEXTID} \
    --login-shell=/sbin/nologin \
    --gid-number=$GUID
done
Of course that script is very simple, but is a beginning. :)
Can you help me to make this script?
On Fri, Dec 1, 2017 at 5:03 PM, Rowland Penny via samba <
samba at lists.samba.org> wrote:
> On Fri, 1 Dec 2017 16:51:57 -0200
> Elias Pereira <empbilly at gmail.com> wrote:
>
> > Can you share with me? :)
>
> Download the latest Samba tarball and unpack it, you will find it as
> part of user.py in:
> samba-4.7.3 --> python --> samba --> netcmd
>
> Rowland
>
> --
> To unsubscribe from this list go to the following URL and read the
> instructions:  https://lists.samba.org/mailman/options/samba
>
-- 
Elias Pereira