From 1645190b1c0a4708cb3110bc94c1b9ec3e0d77e4 Mon Sep 17 00:00:00 2001
From: Andrew Tridgell <tridge@samba.org>
Date: Wed, 17 Nov 2010 21:50:06 +1100
Subject: s4-provision: don't test for xattrs if posix:eadb is set

when it is set in smb.conf or on the command line, obey the setting
and don't try to test for system xattr support
---
 source4/scripting/python/samba/ntacls.py | 1 +
 1 file changed, 1 insertion(+)

(limited to 'source4/scripting/python')

diff --git a/source4/scripting/python/samba/ntacls.py b/source4/scripting/python/samba/ntacls.py
index bccc7b6b72..9bf5cfe3d7 100644
--- a/source4/scripting/python/samba/ntacls.py
+++ b/source4/scripting/python/samba/ntacls.py
@@ -28,6 +28,7 @@ class XattrBackendError(Exception):
 
 
 def checkset_backend(lp, backend, eadbfile):
+    # if posix:eadb is set, then force the backend
     if backend is not None:
         if backend == "native":
             lp.set("posix:eadb", "")
-- 
cgit