freeipa/ipa-python
2009-01-26 14:44:49 -05:00
..
test Change user and group validators to match shadow-utils 2008-08-07 11:21:33 -04:00
__init__.py Fixed broken patches and server spec. 0001-01-01 00:00:00 +00:00
aci.py Use ldap_explode_dn instead of ldap_str2dn so we can use python-ldap 2.2.0 2008-02-11 09:42:47 -05:00
config.py Don't try to discover servers if we specified them on command line. 2008-09-17 23:06:23 +02:00
dnsclient.py Fix a bug in our dns library, do not return the query as a reply if 0 replies were returned. 2008-05-07 14:42:49 -04:00
entity.py Tool for doing configuration updates over LDAP 2008-09-12 20:06:46 -04:00
group.py Set the license uniformly to GPLv2 only. 2008-02-04 15:15:52 -05:00
ipa-python.spec.in Fix versioning for configure.ac and ipa-python/setup.py 2008-08-11 18:31:05 -04:00
ipa.conf Don't define bogus realm/server in configuration file by default 2008-03-17 13:16:56 -04:00
ipaadminutil.py Display name as separate attributes instead of showing common name. 2008-08-22 18:02:20 -04:00
ipaclient.py Fix the client-side search size limit. 2008-04-25 16:46:13 -04:00
ipaerror.py Enforce the maximum username length set by IPA Policy 2008-05-14 09:48:21 -04:00
ipautil.py Tool for doing configuration updates over LDAP 2008-09-12 20:06:46 -04:00
ipavalidate.py Change user and group validators to match shadow-utils 2008-08-07 11:21:33 -04:00
krbtransport.py Fix delegation using the special python-kerberos patch. 2009-01-26 14:44:49 -05:00
Makefile Fix versioning for configure.ac and ipa-python/setup.py 2008-08-11 18:31:05 -04:00
MANIFEST.in Move dnsclient into ipa-python so that I will be able to use it in ipaconfig 2007-12-10 16:31:21 -05:00
radius_util.py Change user and group validators to match shadow-utils 2008-08-07 11:21:33 -04:00
README Add a copy of the LICENSE and populate some README's 2008-01-23 10:30:18 -05:00
rpcclient.py Ignore GSS exception when iterating through server list. Fixes: 459864 2008-09-11 23:38:41 +02:00
setup.py.in Fix versioning for configure.ac and ipa-python/setup.py 2008-08-11 18:31:05 -04:00
sysrestore.py Sysrestore fixes. 2008-03-31 17:27:56 -04:00
user.py Set the license uniformly to GPLv2 only. 2008-02-04 15:15:52 -05:00
version.py.in Move version.py to the common ipa directory instead of being server-based so it can be used by the client tool. 2008-06-03 22:39:11 -04:00

This is a set of libraries common to IPA clients and servers though mostly
geared currently towards command-line tools.

A brief overview:

aci.py - a basic LDAP ACI parser for doing delegations.
config.py - identify the IPA server domain and realm. It uses dnsclient to
            try to detect this information first and will fall back to
            /etc/ipa/ipa.conf if that fails.
ipaadminutil.py - routines to help reduce the number of entries from a search
dnsclient.py - find IPA information via DNS

ipaclient.py - the main interface for any command-line tools. When initialized
               if transport is True then it means the IPA server is on the
               same machine so no need to use the XML-RPC interface.
rpcclient.py - the XML-RPC client API. Callers should use ipaclient instead
               of this directly.

ipautil.py - helper functions

radius_util.py - helper functions for Radius

user.py
group.py
entity.py - entity is the main data type. User and Group extend this class
            (but don't add anything currently).

ipavalidate.py - basic data validation routines
ipaerror.py - our own error types
krbtransport.py - do Kerberos auth over HTTP/S