summaryrefslogtreecommitdiffstats
path: root/ipaserver/plugins/join.py
Commit message (Collapse)AuthorAgeFilesLines
* Make hosts more like real services so we can issue certs for host principalsRob Crittenden2009-12-161-4/+7
| | | | | This patch should make joining a client to the domain and using certmonger to get an initial certificate work.
* Take 2: Extensible return values and validation; steps toward a single ↵Jason Gerard DeRose2009-12-101-0/+3
| | | | output_for_cli(); enable more webUI stuff
* Remove a bunch of unused imports, general cleanupRob Crittenden2009-10-251-13/+4
|
* Enrollment for a host in an IPA domainRob Crittenden2009-09-241-0/+120
This will create a host service principal and may create a host entry (for admins). A keytab will be generated, by default in /etc/krb5.keytab If no kerberos credentails are available then enrollment over LDAPS is used if a password is provided. This change requires that openldap be used as our C LDAP client. It is much easier to do SSL using openldap than mozldap (no certdb required). Otherwise we'd have to write a slew of extra code to create a temporary cert database, import the CA cert, ...