summaryrefslogtreecommitdiffstats
path: root/ipa-admintools
Commit message (Collapse)AuthorAgeFilesLines
* Catch name resolution errors coming from the socket module.Rob Crittenden2008-05-1318-0/+72
| | | | 442650
* Second half of the redoing how the version is managed.Rob Crittenden2008-05-071-1/+1
|
* Redo the way versioning works in freeIPA.Rob Crittenden2008-05-051-79/+0
| | | | | | | | | | | | | | | | | The file VERSION is now the sole-source of versioning. The generated .spec files will been removed in the maintainer-clean targets and have been removed from the repository. By default a GIT build is done. To do a non-GIT build do: $ make TARGET IPA_VERSION_IS_GIT_SNAPSHOT=no When updating the version you can run this to regenerate the version: $ make version-update The version can be determined in Python by using ipaserver.version.VERSION
* Remove duplicated "the" and add some formatting to the EXAMPLE for clarity.Rob Crittenden2008-05-051-3/+4
| | | | 443012
* Add --verbose option so the HTTP headers and XML request/response can be seen.Rob Crittenden2008-04-2518-265/+448
| | | | | | | Also re-do the way modules are imported. I was attemping to have ^C handled gracefully but the way I did it could mask other problems. 443987
* Add nfs as a service principal type.Rob Crittenden2008-04-231-0/+1
| | | | 440242
* Become version 1.0.0release-1-0-0Rob Crittenden2008-04-162-1/+7
|
* Move print statement to the correct scope so it displays both lock and unlock.Rob Crittenden2008-04-151-1/+1
| | | | 442625
* is_integer returns the integer, don't use an if clause, just check it, if itSimo Sorce2008-04-081-12/+12
| | | | | is wrong it will just throw an exception and exit. Fix error reporting to use the canonical str(e)
* Fix error where password was getting set wrong if passed in on command-line.Rob Crittenden2008-04-081-1/+1
| | | | 439905
* When getting members let user indicate what type of member they want.Rob Crittenden2008-03-271-1/+1
| | | | | | | | | | 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
* Don't define bogus realm/server in configuration file by defaultRob Crittenden2008-03-1718-0/+54
| | | | | | | Add default exception handler to avoid backtraces in cmdline tools Enhance error message when the IPA server or realm can't be found 437565
* Allow groups to be added as a group membeRob Crittenden2008-02-282-7/+39
| | | | 435134
* In the UI we don't want to display Edit links unless someone can actuallyRob Crittenden2008-02-273-4/+50
| | | | | | | | | | | | 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
* - Centralize try/except so the entire program is covered. This make itRob Crittenden2008-02-2718-1034/+1124
| | | | | | | possible to catch KeyboardInterrupt during the import process. - Add function for handling python differences with GSSError 434798
* Require that service principals resolve to a DNS A record.Rob Crittenden2008-02-262-4/+14
| | | | | | There is a --force option for those who know what they are doing. 433483
* Move ipa-getkeytab man page into proper subdirRob Crittenden2008-02-252-65/+1
| | | | 433878
* Command-line utility to manage password policyRob Crittenden2008-02-254-0/+194
| | | | 432814
* Remove reference to wrong commandRob Crittenden2008-02-211-5/+5
| | | | | | Clean up language around automatically appending the Kerberos realm 433800
* Become freeipa-0.99.0Rob Crittenden2008-02-212-3/+9
|
* Handle input range properly and catch KeyboardInterrupt and exit gracefullyRob Crittenden2008-02-202-4/+9
| | | | 433496
* Handle a ctrl-C gracefully while getting the new passwordRob Crittenden2008-02-201-13/+18
| | | | Resolves 433053
* Include some missing man pagesRob Crittenden2008-02-081-0/+3
|
* Include some missing utilities in the MakefileRob Crittenden2008-02-081-0/+2
|
* Set the license uniformly to GPLv2 only.Rob Crittenden2008-02-0418-36/+18
|
* Remove = sign between [set|add|del]attr=attr=value to improve readability.Rob Crittenden2008-02-041-3/+3
|
* Add --usage as a command-line option.Rob Crittenden2008-02-011-0/+2
| | | | Resolves 431283
* Marked with wrong license. IPA is GPLv2.Rob Crittenden2008-01-312-6/+12
|
* Add option to list common attributes for use with --setattr,--addattr,--delattrRob Crittenden2008-01-314-4/+37
|
* Handle the --usage option by actually displaying the usageRob Crittenden2008-01-3115-18/+34
| | | | | | Fix some missing options in --usage Remove a few debugging statements Resolves 430704
* Use proper string validation routine.Rob Crittenden2008-01-311-1/+1
| | | | Resolves 430709
* Fix discrepencies between built-in help and the man page.Rob Crittenden2008-01-252-15/+19
| | | | Resolves bz 429814
* Use consistent naming for tools.Rob Crittenden2008-01-256-15/+15
| | | | Resolves 430243
* Add a copy of the LICENSE and populate some README'sRob Crittenden2008-01-231-0/+13
|
* Fix issues reported by rpmlint.Rob Crittenden2008-01-182-4/+10
| | | | | | | | | | | | | | - 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
* Find and delete service principals from the command-line.Rob Crittenden2008-01-114-0/+249
|
* Fix help text of -a argumentRob Crittenden2008-01-111-1/+1
|
* Clean up the formatting a little.Rob Crittenden2008-01-043-17/+4
|
* Add man pageRob Crittenden2008-01-041-0/+54
|
* Add function to retrieve a short list of attributes to make ipa-adddelegationRob Crittenden2008-01-042-5/+19
| | | | easier to use.
* Merge version changes with upstreamSimo Sorce2007-12-212-1/+7
|\
| * Update versions for release.Karl MacMillan2007-12-212-1/+7
| |
* | Big changeset that includes the work around keytab management.Simo Sorce2007-12-212-17/+4
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Following the changelog history from my dev tree, some comments are useful imo ------------------------------------------------------ user: Simo Sorce <ssorce@redhat.com> date: Fri Dec 21 03:05:36 2007 -0500 files: ipa-server/ipa-slapi-plugins/ipa-pwd-extop/test-get-keytab.c description: Remove remnants of the initial test tool changeset: 563:4fe574b7bdf1 user: Simo Sorce <ssorce@redhat.com> date: Fri Dec 21 02:58:37 2007 -0500 files: ipa-server/ipa-slapi-plugins/ipa-pwd-extop/ipa_pwd_extop.c description: Maybe actually encrypting the keys will help :-) changeset: 562:488ded41242a user: Simo Sorce <ssorce@redhat.com> date: Thu Dec 20 23:53:50 2007 -0500 files: ipa-server/ipa-install/share/Makefile.am ipa-server/ipa-install/share/default-aci.ldif description: Fixes changeset: 561:4518f6f5ecaf user: Simo Sorce <ssorce@redhat.com> date: Thu Dec 20 23:53:32 2007 -0500 files: ipa-admintools/Makefile ipa-admintools/ipa-addservice description: transform the old ipa-getkeytab in a tool to add services as the new ipa-getkeytab won't do it (and IMO it makes more sense to keep the two functions separate anyway). changeset: 559:25a7f8ee973d user: Simo Sorce <ssorce@redhat.com> date: Thu Dec 20 23:48:59 2007 -0500 files: ipa-server/ipa-slapi-plugins/ipa-pwd-extop/ipa_pwd_extop.c description: Bugfixes changeset: 558:28fcabe4aeba user: Simo Sorce <ssorce@redhat.com> date: Thu Dec 20 23:48:29 2007 -0500 files: ipa-client/configure.ac ipa-client/ipa-client.spec ipa-client/ipa-client.spec.in ipa-client/ipa-getkeytab.c description: Configure fixes Add ipa-getkeytab to spec Client fixes changeset: 557:e92a4ffdcda4 user: Simo Sorce <ssorce@redhat.com> date: Thu Dec 20 20:57:10 2007 -0500 files: ipa-client/Makefile.am ipa-client/configure.ac description: Try to make ipa-getkeytab build via autotools changeset: 556:224894175d6b user: Simo Sorce <ssorce@redhat.com> date: Thu Dec 20 20:35:56 2007 -0500 files: ipa-admintools/ipa-getkeytab ipa-client/ipa-getkeytab.c description: Messed a bit with hg commands. To make it short: - Remove the python ipa-getkeytab program - Rename the keytab plugin test program to ipa-getkeytab - Put the program in ipa-client as it should be distributed with the client tools changeset: 555:5e1a068f2e90 user: Simo Sorce <ssorce@redhat.com> date: Thu Dec 20 20:20:40 2007 -0500 files: ipa-server/ipa-slapi-plugins/ipa-pwd-extop/test-get-keytab.c description: Polish the client program changeset: 554:0a5b19a167cf user: Simo Sorce <ssorce@redhat.com> date: Thu Dec 20 18:53:49 2007 -0500 files: ipa-server/ipa-install/share/default-aci.ldif ipa-server/ipa-install/share/default-keytypes.ldif ipa-server/ipa-install/share/kdc.conf.template ipa-server/ipa-install/share/kerberos.ldif ipa-server/ipa-slapi-plugins/ipa-pwd-extop/ipa_pwd_extop.c ipa-server/ipa-slapi-plugins/ipa-pwd-extop/test-get-keytab.c ipa-server/ipaserver/krbinstance.py description: Support retrieving enctypes from LDAP Filter enctypes Update test program changeset: 553:f75d7886cb91 user: Simo Sorce <ssorce@redhat.com> date: Thu Dec 20 00:17:40 2007 -0500 files: ipa-server/ipa-slapi-plugins/ipa-pwd-extop/test-get-keytab.c description: Fix ber generation and remove redundant keys changeset: 552:0769cafe6dcd user: Simo Sorce <ssorce@redhat.com> date: Wed Dec 19 19:31:37 2007 -0500 files: ipa-server/ipa-slapi-plugins/ipa-pwd-extop/test-get-keytab.c description: Avoid stupid segfault changeset: 551:1acd5fdb5788 user: Simo Sorce <ssorce@redhat.com> date: Wed Dec 19 18:39:12 2007 -0500 files: ipa-server/ipa-slapi-plugins/ipa-pwd-extop/ipa_pwd_extop.c description: If ber_peek_tag() returns LBER_ERROR it may just be that we are at the end of the buffer. Unfortunately ber_scanf is broken in the sense that it doesn't actually really consider sequence endings (due probably to the fact they are just representation and do not reflect in the underlieing DER encoding.) changeset: 550:e974fb2726a4 user: Simo Sorce <ssorce@redhat.com> date: Wed Dec 19 18:35:07 2007 -0500 files: ipa-server/ipa-slapi-plugins/ipa-pwd-extop/ipa_pwd_extop.c ipa-server/ipa-slapi-plugins/ipa-pwd-extop/test-get-keytab.c description: First shot at the new method
* Create ipa-radius-admintoolsKarl MacMillan2007-12-189-1306/+0
|
* Add a man page for ipa-getkeytab.Karl MacMillan2007-12-122-1/+66
|
* Add simple UI for command-line programs to be able to select whenRob Crittenden2007-12-104-28/+101
| | | | multiple entries are returned.
* Merge.Karl MacMillan2007-12-116-43/+45
|\
| * Rework input validation to more closely match what we require in the UIRob Crittenden2007-12-073-40/+40
| |
| * Fix delegation in the UI and add a missing aci that allows writes.Rob Crittenden2007-12-071-1/+3
| | | | | | | | Make ipa-deldelegation more user-friendly.
| * Fix spellingRob Crittenden2007-12-102-2/+2
| |