s4:provision Be more polite to long-suffering Samba testers.
authorAndrew Bartlett <abartlet@samba.org>
Thu, 11 Feb 2010 06:13:42 +0000 (17:13 +1100)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 11 Feb 2010 06:16:55 +0000 (17:16 +1100)
Our testers put up with a lot of odd things when testing out Samba4.

Andrew Bartlett

source4/scripting/python/samba/provision.py

index b02d94d2270640e6e1a37b87b85980c661caa66c..2ea46138d5f134f05df71e1f0194e2c4c47633ec 100644 (file)
@@ -1173,8 +1173,9 @@ def provision(setup_dir, message, session_info,
 
     # only install a new smb.conf if there isn't one there already
     if os.path.exists(smbconf):
-        # JHT calls me up often enough with weird errors, because he
-        # uses an empty smb.conf. --abartlet
+        # if Samba Team members can't figure out the weird errors
+        # loading an empty smb.conf gives, then we need to be smarter.
+        # Pretend it just didn't exist --abartlet
         data = open(smbconf, 'r').read()
         data = data.lstrip()
         if data is None or data == "":