summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2011-11-07 02:04:52 +0100
committerJelmer Vernooij <jelmer@samba.org>2011-11-07 02:04:52 +0100
commitb8efff57dce41fbcc16a63265e321ce83fe25e89 (patch)
treecbcc3a498b114c48f034cfe1b67e98e150371d8b
parent56081da3680b7032df08fdfa55e8a034a1f1d1a4 (diff)
downloadsamba-b8efff57dce41fbcc16a63265e321ce83fe25e89.tar.gz
samba-b8efff57dce41fbcc16a63265e321ce83fe25e89.tar.bz2
samba-b8efff57dce41fbcc16a63265e321ce83fe25e89.zip
samba_kcc: Remove unnecessary return statements.
-rwxr-xr-xsource4/scripting/bin/samba_kcc17
1 files changed, 0 insertions, 17 deletions
diff --git a/source4/scripting/bin/samba_kcc b/source4/scripting/bin/samba_kcc
index 30e6687066..c024cd41ef 100755
--- a/source4/scripting/bin/samba_kcc
+++ b/source4/scripting/bin/samba_kcc
@@ -61,7 +61,6 @@ class KCC:
self.my_dsa_dnstr = None # My dsa DN
self.my_site_dnstr = None
self.samdb = samdb
- return
def load_my_site(self):
"""Loads the Site class for the local DSA
@@ -73,7 +72,6 @@ class KCC:
site.load_site(samdb)
self.site_table[self.my_site_dnstr] = site
- return
def load_my_dsa(self):
"""Discover my nTDSDSA thru the rootDSE entry and
@@ -87,7 +85,6 @@ class KCC:
attrs=["dsServiceName"])
except ldb.LdbError, (enum, estr):
raise Exception("Unable to find my nTDSDSA - (%s)" % estr)
- return
dnstr = res[0]["dsServiceName"][0]
@@ -104,8 +101,6 @@ class KCC:
# and index by dsa dn
self.dsa_table[dnstr] = dsa
- return
-
def load_all_dsa(self):
"""Discover all nTDSDSA thru the sites entry and
instantiate and load the DSAs. Each dsa is inserted
@@ -119,7 +114,6 @@ class KCC:
expression="(objectClass=nTDSDSA)")
except ldb.LdbError, (enum, estr):
raise Exception("Unable to find nTDSDSAs - (%s)" % estr)
- return
for msg in res:
dnstr = str(msg.dn)
@@ -136,8 +130,6 @@ class KCC:
# and index by dsa dn
self.dsa_table[dnstr] = dsa
- return
-
def load_all_partitions(self):
"""Discover all NCs thru the Partitions dn and
instantiate and load the NCs. Each NC is inserted
@@ -165,8 +157,6 @@ class KCC:
part.load_partition(self.samdb)
self.part_table[partstr] = part
- return
-
def should_be_present_test(self):
"""Enumerate all loaded partitions and DSAs and test
if NC should be present as replica
@@ -178,7 +168,6 @@ class KCC:
logger.info("dsadn:%s\nncdn:%s\nneeded=%s:ro=%s:partial=%s\n" % \
(dsa.dsa_dnstr, part.nc_dnstr, needed, ro, partial))
- return
def refresh_failed_links_connections(self):
# XXX - not implemented yet
@@ -211,7 +200,6 @@ class KCC:
in the samdb
"""
# XXX - not implemented yet
- return
def update_rodc_connection(self):
"""Runs when the local DC is an RODC and updates the RODC NTFRS
@@ -229,7 +217,6 @@ class KCC:
# If no such cn1 can be found, nothing is modified by this task.
# XXX - not implemented yet
- return
def intrasite_max_node_edges(self, node_count):
"""Returns the maximum number of edges directed to a node in
@@ -540,8 +527,6 @@ class KCC:
i = i + 1
- return
-
def intrasite(self):
"""The head method for generating the intra-site KCC replica
connection graph and attendant nTDSConnection objects
@@ -602,7 +587,6 @@ class KCC:
mydsa.commit_connection_table(self.samdb)
logger.debug("intrasite exit:\nmydsa: %s" % mydsa)
- return
def run(self):
"""Method to perform a complete run of the KCC and
@@ -646,7 +630,6 @@ class KCC:
# Step 7
self.update_rodc_connection()
- return
##################################################
# Global Functions