1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

passdb: Remove pdb_ipa

The version used these days can be found under

https://pagure.io/freeipa/blob/master/f/daemons/ipa-sam

Having a stale copy in Samba only confuses things.

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Alexander Bokovoy <ab@samba.org>

Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Wed Mar 15 09:18:21 CET 2017 on sn-devel-144
This commit is contained in:
Volker Lendecke 2017-01-25 17:44:38 +01:00 committed by Jeremy Allison
parent acad0adc29
commit c5e101af2b
4 changed files with 1 additions and 1543 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,28 +0,0 @@
/*
Unix SMB/CIFS implementation.
IPA helper functions for SAMBA
Copyright (C) Sumit Bose <sbose@redhat.com> 2010
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PASSDB_PDB_IPA_H_
#define _PASSDB_PDB_IPA_H_
/* The following definitions come from passdb/pdb_ipa.c */
NTSTATUS pdb_ipa_init(void);
#endif /* _PASSDB_PDB_IPA_H_ */

View File

@ -65,7 +65,6 @@
#include "smbldap.h"
#include "passdb/pdb_ldap.h"
#include "passdb/pdb_nds.h"
#include "passdb/pdb_ipa.h"
#include "passdb/pdb_ldap_util.h"
#include "passdb/pdb_ldap_schema.h"
@ -6635,7 +6634,5 @@ NTSTATUS pdb_ldapsam_init(void)
/* Let pdb_nds register backends */
pdb_nds_init();
pdb_ipa_init();
return NT_STATUS_OK;
}

View File

@ -11,7 +11,7 @@ bld.SAMBA3_MODULE('pdb_tdbsam',
bld.SAMBA3_MODULE('pdb_ldapsam',
subsystem='pdb',
deps='smbldap smbldaphelper',
source='pdb_ldap.c pdb_nds.c pdb_ipa.c',
source='pdb_ldap.c pdb_nds.c',
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('pdb_ldapsam'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('pdb_ldapsam') and bld.CONFIG_SET('HAVE_LDAP'))