Displaying 2 results from an estimated 2 matches for "sync_command".
Did you mean:
dsync_command
2019 Oct 07
1
samba-tool user syncpasswords crashes with python3
I think, i found the error:
in /usr/local/samba/lib/python3.6/site-packages/samba/netcmd/user.py on
line 2001:
...snip
def run_sync_command(dn, ldif):
log_msg("Call Popen[%s] for %s\n" % (self.sync_command,
dn))
sync_command_p = Popen(self.sync_command,
stdin=PIPE,
stdout=PIPE,
stderr=STDOUT)...
2019 Oct 04
2
samba-tool user syncpasswords crashes with python3
...sr/local/samba/lib/python3.6/site-
> > packages/samba/netcmd/user.py", line 2234, in dirsync_loop
> > handle_object(ri, r)
> > File "/usr/local/samba/lib/python3.6/site-
> > packages/samba/netcmd/user.py", line 2043, in handle_object
> > run_sync_command(obj.dn, ldif)
> > File "/usr/local/samba/lib/python3.6/site-
> > packages/samba/netcmd/user.py", line 2001, in run_sync_command
> > reply = bytes(sync_command_p.communicate(input)[0], encoding =
> > 'utf-8')
> It seems to working up to here
>...