The Samba-Bugzilla – Attachment 8874 Details for
Bug 9461
FSMO seize of naming role fails: NT_STATUS_IO_TIMEOUT
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for master, to not give an error in this successful case
0001-python-samba-tool-fsmo-Do-not-give-an-error-on-a-suc.patch (text/plain), 1.89 KB, created by
Andrew Bartlett
on 2013-05-09 03:17:51 UTC
(
hide
)
Description:
Patch for master, to not give an error in this successful case
Filename:
MIME Type:
Creator:
Andrew Bartlett
Created:
2013-05-09 03:17:51 UTC
Size:
1.89 KB
patch
obsolete
>From acad20714833c22efbd4f0ae6d6bb3ea449bc314 Mon Sep 17 00:00:00 2001 >From: Andrew Bartlett <abartlet@samba.org> >Date: Thu, 9 May 2013 15:16:55 +1200 >Subject: [PATCH] python-samba-tool fsmo: Do not give an error on a successful > role transfer > >--- > python/samba/netcmd/fsmo.py | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > >diff --git a/python/samba/netcmd/fsmo.py b/python/samba/netcmd/fsmo.py >index c938c91..02721f9 100644 >--- a/python/samba/netcmd/fsmo.py >+++ b/python/samba/netcmd/fsmo.py >@@ -124,22 +124,22 @@ all=all of the above"""), > self.message("Attempting transfer...") > try: > transfer_role(self.outf, role, samdb) >+ self.outf.write("FSMO seize was not required, as transfer of '%s' role was successful\n" % role) >+ return > except CommandError: > #transfer failed, use the big axe... > self.message("Transfer unsuccessful, seizing...") >- m["fSMORoleOwner"]= ldb.MessageElement( >- serviceName, ldb.FLAG_MOD_REPLACE, >- "fSMORoleOwner") > else: > self.message("Will not attempt transfer, seizing...") >- m["fSMORoleOwner"]= ldb.MessageElement( >- serviceName, ldb.FLAG_MOD_REPLACE, >- "fSMORoleOwner") >+ >+ m["fSMORoleOwner"]= ldb.MessageElement( >+ serviceName, ldb.FLAG_MOD_REPLACE, >+ "fSMORoleOwner") > try: > samdb.modify(m) > except LdbError, (num, msg): > raise CommandError("Failed to initiate role seize of '%s' role: %s" % (role, msg)) >- self.outf.write("FSMO transfer of '%s' role successful\n" % role) >+ self.outf.write("FSMO seize of '%s' role successful\n" % role) > > def run(self, force=None, H=None, role=None, > credopts=None, sambaopts=None, versionopts=None): >-- >1.7.11.7 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 9461
:
8279
|
8483
|
8484
|
8506
|
8874
|
9238
|
9239