mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
Move pdb_xml to source/
This commit is contained in:
parent
1c06377f84
commit
b68106a79e
@ -1,13 +0,0 @@
|
||||
** This file is now deprecated - use CVS' log features **
|
||||
|
||||
2002-06-13 Jelmer Vernooij <jelmer@samba.org>
|
||||
* Use SID's instead of RID's (just like samba-HEAD CVS)
|
||||
* Released 1.1
|
||||
|
||||
2002-05-26 Jelmer Vernooij <jelmer@samba.org>
|
||||
* Update read support (didn't support all elements yet)
|
||||
* Released 1.0
|
||||
|
||||
2002-05-26 Jelmer Vernooij <jelmer@samba.org>
|
||||
* Initial release
|
||||
* Released 0.5
|
@ -1,31 +0,0 @@
|
||||
PDB_OBJS = pdb_xml.so
|
||||
PDB_CFLAGS = `xml2-config --cflags`
|
||||
PDB_LDFLAGS = `xml2-config --libs`
|
||||
|
||||
CC = @CC@
|
||||
LIBTOOL = libtool
|
||||
CFLAGS = @CFLAGS@ $(PDB_CFLAGS)
|
||||
CPPFLAGS = @CPPFLAGS@ $(PDB_CPPFLAGS)
|
||||
LDFLAGS = @LDFLAGS@ $(PDB_LDFLAGS)
|
||||
LDSHFLAGS = -shared
|
||||
srcdir = @builddir@
|
||||
FLAGS = $(CFLAGS) -Iinclude -I$(srcdir)/include -I$(srcdir)/ubiqx -I$(srcdir)/smbwrapper -I. $(CPPFLAGS) -I$(srcdir)
|
||||
|
||||
# Default target
|
||||
|
||||
default: $(PDB_OBJS)
|
||||
|
||||
# Pattern rules
|
||||
|
||||
%.so: %.lo
|
||||
$(LIBTOOL) $(CC) $(LDSHFLAGS) $(LDFLAGS) -o $@ $<
|
||||
|
||||
%.lo: %.c
|
||||
$(LIBTOOL) $(CC) $(FLAGS) -c $<
|
||||
|
||||
# Misc targets
|
||||
|
||||
clean:
|
||||
rm -rf .libs
|
||||
rm -f core *~ *% *.bak \
|
||||
$(PDB_OBJS) $(PDB_OBJS:.so=.o) $(PDB_OBJS:.so=.lo)
|
@ -1,14 +0,0 @@
|
||||
Readme for samba pdb xml 0.5
|
||||
--
|
||||
This module requires libxml2 to be installed.
|
||||
|
||||
The usage of pdb_xml is pretty straightforward. To export data, use:
|
||||
|
||||
pdbedit -e plugin:/usr/lib/samba/pdb_xml.so:filename
|
||||
|
||||
(where filename is the name of the file to put the data in)
|
||||
To import data, use:
|
||||
|
||||
pdbedit -i plugin:/usr/lib/samba/pdb_xml.so:filename -e <current-pdb>
|
||||
|
||||
Where filename is the name to read the data from and <current-pdb> to put it in.
|
@ -1,6 +0,0 @@
|
||||
- Be faster. Don't rewrite the whole file when adding a user, but store
|
||||
it in the memory and save it when exiting. Requires changes to samba source.
|
||||
Gives the ability to read/write to standard input/output
|
||||
- Do locking!
|
||||
- Better names!
|
||||
- Support stdin ?
|
@ -19,7 +19,14 @@
|
||||
* Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
/* FIXME: Support stdin input by using '-' */
|
||||
/* FIXME:
|
||||
* - Support stdin input by using '-'
|
||||
* - Be faster. Don't rewrite the whole file when adding a user, but store it in the memory and save it when exiting. Requires changes to samba source.
|
||||
* - Gives the ability to read/write to standard input/output
|
||||
* - Do locking!
|
||||
* - Better names!
|
||||
*/
|
||||
|
||||
|
||||
#define XML_URL "http://www.samba.org/ns"
|
||||
|
Loading…
Reference in New Issue
Block a user