freeipa/ipapython
Rob Crittenden 16b8d62968 Fix two problems with ipa-replica-prepare
1. Fix a unicode() problem creating the DNS entries
2. Fix a strange NSS error when generating the certificates against
   a dogtag server.

The NSS errors are quite strange. When generating the first certificate
nss_shutdown() fails because the database isn't initialized yet but
nss_is_initialized() returned True. The second pass fails because
something is in use.
2011-02-14 18:15:35 -05:00
..
py_default_encoding Unused value in initdefault_encoding_utf8 2011-01-25 08:59:50 -05:00
test Fix failed tests. API for utcoffset changed and strings are more robust. 2011-01-24 14:34:38 -05:00
__init__.py Rename ipa-python directory to ipapython so it is a real python library 2009-02-09 14:35:15 -05:00
certdb.py Change FreeIPA license to GPLv3+ 2010-12-20 17:19:53 -05:00
certmonger.py Change FreeIPA license to GPLv3+ 2010-12-20 17:19:53 -05:00
config.py Change FreeIPA license to GPLv3+ 2010-12-20 17:19:53 -05:00
dnsclient.py Change FreeIPA license to GPLv3+ 2010-12-20 17:19:53 -05:00
dogtag.py Change FreeIPA license to GPLv3+ 2010-12-20 17:19:53 -05:00
entity.py Change FreeIPA license to GPLv3+ 2010-12-20 17:19:53 -05:00
ipa.conf Rename ipa-python directory to ipapython so it is a real python library 2009-02-09 14:35:15 -05:00
ipautil.py Add default success/failure output logging. 2011-02-14 10:23:52 -05:00
ipavalidate.py Change FreeIPA license to GPLv3+ 2010-12-20 17:19:53 -05:00
Makefile Add default python encoding module to reset default from ascii to utf-8 2010-10-22 21:39:20 -04:00
MANIFEST.in Rename ipa-python directory to ipapython so it is a real python library 2009-02-09 14:35:15 -05:00
nsslib.py Fix two problems with ipa-replica-prepare 2011-02-14 18:15:35 -05:00
README Remove radius options completely. 2011-01-14 14:06:56 -05:00
setup.py.in Execute /usr/bin/python directly instead of /usr/bin/env python 2011-01-14 16:27:48 -05:00
sysrestore.py Change FreeIPA license to GPLv3+ 2010-12-20 17:19:53 -05:00
version.py.in Add API version and have server reject incompatible clients. 2011-01-14 14:26:22 -05:00

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

A brief overview:

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/default.conf if that fails.
dnsclient.py - find IPA information via DNS

ipautil.py - helper functions

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