summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-02-22 12:01:05 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-02-22 12:01:05 +0000
commit3e19eda335057ec47483c8567395b43d316485db (patch)
treeae3b8f3197c156998cfe7e5fccec5d3719650a57 /source3/Makefile.in
parentab43a25b2893506d5de305626dfbbf98966f1f78 (diff)
downloadsamba-3e19eda335057ec47483c8567395b43d316485db.tar.gz
samba-3e19eda335057ec47483c8567395b43d316485db.tar.bz2
samba-3e19eda335057ec47483c8567395b43d316485db.zip
Remove 'unixsam' from the default passdb backends.
The intention is to remove the muliple passdb backends, but we need the 'guest' account to always be there. If the admin adds the guest account to (say) LDAP, there will only be one backend required for operation. This helps remove some nasty behaviours with adding accounts to the system for both the RPC 'create user' and the SAMSYNC code. Users 'added' with an 'add user/machine' script won't magicly appear, and machine accounts 'pre-added' to unix, but not the smbpasswd file will not cause mayhem. This commit also implements somthing tridge discussed with me, the concept of 'default' passdb operation pointers - so that each backend does not need it's own stub funcitons wrapping the default tdb privilages/group mapping code. This also removes an implicit 'sid->name' and 'name->sid' mapping from our own local SID space, to winbind usernames. When adding mapping for NIS/LDAP non-sam users in future, we need to be careful. Andrew Bartlett (This used to be commit 6f32fa234961a525760a05418a08ec48d22d7617)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r--source3/Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index cbd8418a48..7de4b0ae8f 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -286,8 +286,9 @@ PASSDB_GET_SET_OBJ = passdb/pdb_get_set.o
PASSDB_OBJ = $(PASSDB_GET_SET_OBJ) passdb/passdb.o passdb/pdb_interface.o \
passdb/machine_sid.o passdb/pdb_smbpasswd.o \
passdb/pdb_tdb.o passdb/pdb_ldap.o \
- passdb/pdb_unix.o passdb/util_sam_sid.o \
- passdb/pdb_compat.o passdb/pdb_nisplus.o passdb/privileges.o
+ passdb/pdb_unix.o passdb/pdb_guest.o passdb/util_sam_sid.o \
+ passdb/pdb_compat.o passdb/pdb_nisplus.o \
+ passdb/privileges.o
XML_OBJ = modules/xml.o
MYSQL_OBJ = modules/mysql.o