Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't allow the admin user to be removed using the XML-RPC Interface. | Rob Crittenden | 2008-03-28 | 1 | -0/+2 |
| | | | | | | If a site really wants it gone then can delete it via LDAP. 439281 | ||||
* | Do case-less comparisons when considering objectclass but store the | Rob Crittenden | 2008-03-28 | 1 | -3/+3 |
| | | | | | | | | | | current value to prevent unnecessary LPAP updates (and failed writes) Don't check against these lists on updates, only add them on new entries. Disable the ability to configure in the UI these values for now. 438256 | ||||
* | Normalize member DN's when determining whether they are in a group | Rob Crittenden | 2008-03-26 | 1 | -1/+5 |
| | | | | | | as a direct or indirect member. 438387 | ||||
* | When getting members let user indicate what type of member they want. | Rob Crittenden | 2008-03-27 | 1 | -4/+44 |
| | | | | | | | | | | The memberOf attribute includes members that are directly in the group via the "member" attribute and those that are included as a result of being in a group that is in the group. The UI needs to be able to distinguish between the two. 438706 | ||||
* | Re-root the IPA web UI to /ipa and the XML-RPC interface to /ipaxml. | Rob Crittenden | 2008-03-24 | 2 | -18/+14 |
| | | | | 438021 | ||||
* | We are really changing the kerberos principal key and not the password when | Rob Crittenden | 2008-03-24 | 1 | -4/+4 |
| | | | | | | | | | | we do updates, so use the right terminology internally. Also fix the actual field we update (and grant permission appropriately in delegations). The DS password handles updating userPassword and any Samba passwords as necessary. 438256 | ||||
* | Allow the realm to be included in the name passed to add_service_principal() | Rob Crittenden | 2008-03-17 | 1 | -3/+6 |
| | | | | | | | This is more kerberos-like and it doesn't hurt anything, we just won't allow realms other than our own to be used. 437566 | ||||
* | Adding items to the set needs to be lower case to prevent duplicates. | Rob Crittenden | 2008-03-10 | 1 | -1/+1 |
| | | | | | | | This function was assuming that the target list was all lower-case so the set could end up with duplicate values which would get kicked out by LDAP. 433680 | ||||
* | Filter out K/M and krbtgt principals from the service principals list. | Rob Crittenden | 2008-03-03 | 1 | -2/+3 |
| | | | | 435713 | ||||
* | Do argument type checking in the XML-RPC interface | Rob Crittenden | 2008-02-29 | 1 | -60/+149 |
| | | | | | Fix error in service principals where the service wasn't being removed before doing the DNS lookup. | ||||
* | In the UI we don't want to display Edit links unless someone can actually | Rob Crittenden | 2008-02-27 | 1 | -1/+8 |
| | | | | | | | | | | | | edit things. We use the 'editors' group for this. This group itself grants no permission other than displaying certain things in the UI. In order to be in the editors group a user must be a member of a group that is the source group in a delegation. The memberof plugin will do all the hard work to be sure that a user's memberof contains cn=editors if they are in a delegated group. 432874 | ||||
* | The admins group cannot be renamed. | Rob Crittenden | 2008-02-27 | 1 | -0/+3 |
| | | | | 433880 | ||||
* | Require that service principals resolve to a DNS A record. | Rob Crittenden | 2008-02-26 | 1 | -2/+21 |
| | | | | | | There is a --force option for those who know what they are doing. 433483 | ||||
* | Add failover to the XML-RPC client | Rob Crittenden | 2008-02-22 | 2 | -1/+7 |
| | | | | 433506 | ||||
* | Don't allow a group to be a member of itself. | Rob Crittenden | 2008-02-22 | 1 | -1/+5 |
| | | | | 434542 | ||||
* | Syntax error, ')' in the worng place throws nasty 500 errors on ldap errors :) | Simo Sorce | 2008-02-21 | 1 | -1/+1 |
| | |||||
* | Redirect users when they don't use the FQDN on both SSL and non-SSL ports | Rob Crittenden | 2008-02-21 | 3 | -12/+14 |
| | | | | | | | We update the mod_nss configuration (nss.conf) during installation to include ipa-rewrite.conf to handle the SSL side. 433054 | ||||
* | Fix bug that prevented single-character fields | Rob Crittenden | 2008-02-11 | 2 | -4/+10 |
| | | | | | | | | | | Fix bug in exception handling where we were sending the wrong thing as detail. Basically we were catching an LDAP error, generating an IPAError from it, catching that, then setting the detail of the 2nd exception to another IPAError rather than the root exception. This caused anything looking at e.detail to crap out Resolves 432136 | ||||
* | Switch 'below' to 'above' to point to the right location of the CA on the page | Rob Crittenden | 2008-02-07 | 1 | -1/+1 |
| | |||||
* | Set the license uniformly to GPLv2 only. | Rob Crittenden | 2008-02-04 | 3 | -6/+3 |
| | |||||
* | Fix issues reported by rpmlint. | Rob Crittenden | 2008-01-18 | 3 | -7/+8 |
| | | | | | | | | | | | | | | - Removing shebangs (#!) from a bunch of python libraries - Don't use a variable name in init scripts for the lock file - Keep the init script name consistent with the binary name, so renamed ipa-kpasswd.init to ipa_kpasswd.init - Add status option to the init scripts - Move most python scripts out of /usr/share/ipa and into the python site-packages directories (ipaserver and ipaclient) - Remove unnecessary sys.path.append("/usr/share/ipa") - Fix the license string in the spec files - Rename ipa-webgui to ipa_webgui everywhere - Fix a couple of issues reported by pychecker in ipa-python | ||||
* | Service principal deletion | Rob Crittenden | 2008-01-11 | 2 | -0/+21 |
| | |||||
* | Remove registration of get_keytab | Rob Crittenden | 2008-01-03 | 1 | -1/+0 |
| | |||||
* | Add function to retrieve a short list of attributes to make ipa-adddelegation | Rob Crittenden | 2008-01-04 | 2 | -0/+8 |
| | | | | easier to use. | ||||
* | In add_service_principal() don't let the user pass in the realm. | Rob Crittenden | 2008-01-07 | 1 | -0/+4 |
| | | | | This could result in a principal of the form: service/host@something@REALM | ||||
* | Finishe removing previous code to fetch keytabs | Simo Sorce | 2007-12-21 | 1 | -33/+0 |
| | |||||
* | Fix minor typo in unauthorized page. | Karl MacMillan | 2007-12-12 | 1 | -1/+1 |
| | |||||
* | Add automatic browser configuration for kerberos SSO using javascript. | Rob Crittenden | 2007-12-12 | 2 | -1/+18 |
| | | | | | | This uses the UniversalPreferencesWrite function to set the browser preferences to allow negotiation and ticket forwarding in the IPA domain. A self-signed certificate is generated to sign the javascript. | ||||
* | Make the old entry option in update_*, check for empty parameters and | Rob Crittenden | 2007-12-11 | 1 | -58/+222 |
| | | | | fix some problems reported by pychecker. | ||||
* | Enable searching for multiple things at once | Rob Crittenden | 2007-12-11 | 1 | -1/+1 |
| | |||||
* | Tie the logging module to 'PythonOption IPADebug' in /etc/httpd/conf.d/ipa.conf | Rob Crittenden | 2007-12-11 | 2 | -10/+10 |
| | |||||
* | Merge. | Karl MacMillan | 2007-12-11 | 2 | -9/+160 |
|\ | |||||
| * | Remove some debugging statements | Rob Crittenden | 2007-12-10 | 1 | -2/+0 |
| | | |||||
| * | Make uid an editable field in the Edit UI so we can do RDN changes | Rob Crittenden | 2007-12-06 | 1 | -3/+6 |
| | | | | | | | | | | | | | | Fix group RDN changes Remove a copy/paste error in the group UI update that caused 2 updates Fix variable name so groups don't get user objectclasses Remove color CSS for field backgrounds as they override disabled field display | ||||
| * | Utilize user and group objectclass lists in cn=ipaconfig | Rob Crittenden | 2007-12-06 | 1 | -4/+22 |
| | | | | | | | | Change the syntax on user and group objectclasses in cn=ipaconfig | ||||
| * | Move dn removal to the XML-RPC side and remove empty attributes | Rob Crittenden | 2007-12-05 | 1 | -2/+23 |
| | | |||||
| * | Add UI for service principal creation and keytab retrieval | Rob Crittenden | 2007-12-05 | 2 | -1/+73 |
| | | |||||
| * | Phase 1 of allowing admins to set the default object classes for users & groups | Rob Crittenden | 2007-12-04 | 1 | -0/+39 |
| | | | | | | | | | | | | | | This adds the UI and does error checking of the selected object classes but it doesn't actually use the values yet. It also generalizes some functions for doing multi-valued fields. | ||||
* | | merge | John Dennis | 2007-12-04 | 1 | -30/+63 |
|\| | |||||
| * | Convert krbmaxpwdlife and krbminpwdlife from seconds into days and hours | Rob Crittenden | 2007-12-03 | 1 | -5/+16 |
| | | |||||
| * | Compatibility changes to work on RHEL 5 with python 2.4 | rcritten@redhat.com | 2007-11-30 | 1 | -5/+6 |
| | | |||||
| * | Revert logging setup change because it has unintended | Karl MacMillan | 2007-12-03 | 1 | -3/+3 |
| | | | | | | | | consequences during ipa-server-install. | ||||
| * | Require that the default users group exists | Rob Crittenden | 2007-11-30 | 1 | -8/+19 |
| | | | | | | | | Fix some copy-paste errors from the password policy update | ||||
| * | Don't allow the admins or editors groups to be removed. | Rob Crittenden | 2007-11-30 | 1 | -0/+10 |
| | | | | | | | | Don't allow the default group for users to be removed. | ||||
| * | Remove optional arguments from the XML-RPC interface | Rob Crittenden | 2007-11-29 | 1 | -15/+15 |
| | | |||||
* | | fix merge error | John Dennis | 2007-11-29 | 1 | -44/+0 |
| | | |||||
* | | merged radius work with latest mainline tip | John Dennis | 2007-11-28 | 4 | -66/+438 |
|\| | |||||
| * | Add xml-rpc interface for getting keytabs. | Karl MacMillan | 2007-11-21 | 2 | -0/+69 |
| | | | | | | | | Warning: this lacks any sort of authorization. | ||||
| * | Generate master password from Simo. | Karl MacMillan | 2007-11-21 | 1 | -3/+3 |
| | | |||||
| * | Use groupOfNames and member, not groupOfUniqueNames and uniqueMember | Simo Sorce | 2007-11-20 | 1 | -16/+16 |
| | |