summaryrefslogtreecommitdiffstats
path: root/ipa-client/ipaclient
Commit message (Collapse)AuthorAgeFilesLines
* 18 Use TLS for ipadiscovery during ipa-client-install ↵Jr Aquino2011-02-211-0/+24
| | | | https://fedorahosted.org/freeipa/ticket/974
* Change FreeIPA license to GPLv3+Jakub Hrozek2010-12-204-24/+24
| | | | | | | | | | The changes include: * Change license blobs in source files to mention GPLv3+ not GPLv2 only * Add GPLv3+ license text * Package COPYING not LICENSE as the license blobs (even the old ones) mention COPYING specifically, it is also more common, I think https://fedorahosted.org/freeipa/ticket/239
* Better distinguish between when DNS discovery works and search more domains.Rob Crittenden2010-09-201-9/+61
| | | | | | | | | | | | | | | | | | | | | | Passing domain and server on the command-line used to be considered as DNS autodiscovery worked. This was problematic if there was in fact no SRV records because krb5.conf would be configured without a specific KDC causing all Kerberos ops to fail. Now if you pass in a domain/server it still tries to see if they are discoverable and if so won't hardcode a server, but will fall back to doing so if necessary. Also be a lot more aggressive on looking for the SRV records. Use the search and domain values from /etc/resolv.conf on the chance that the SRV records aren't in the domain of the hostname of the machine. An example of this would be if your laptop is in dhcp.example.com and your company's SRV records are in corp.example.com. Searching dhcp.example.com and example.com won't find the SRV records but the user is likely to have corp.redhat.com in the search list, at least. ticket 234
* Better LDAP error handling in ipa-client-installRob Crittenden2009-12-011-9/+5
|
* Clean up additional issues discovered with pylint and pycheckerRob Crittenden2009-08-201-4/+4
|
* Rename ipa-python directory to ipapython so it is a real python libraryRob Crittenden2009-02-092-45/+45
| | | | | We used to install it as ipa, now installing it as ipapython. The rpm is still ipa-python.
* Handle exceptions more gracefully on systems with python-ldap 2.2.0Rob Crittenden2008-04-141-5/+8
| | | | 442136
* Implement client uninstallSimo Sorce2008-03-311-6/+28
| | | | (including RHEL4 contrib setup script)
* Prevent server and domain from being undefined or blank when we need themRob Crittenden2008-03-051-7/+11
| | | | | | | Improve LDAP error reporting Don't return the str() of discovery values because it can return "None" 436130
* Set the license uniformly to GPLv2 only.Rob Crittenden2008-02-043-5/+4
|
* Fix issues reported by rpmlint.Rob Crittenden2008-01-183-3/+1
| | | | | | | | | | | | | | - 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
* Move dnsclient into ipa-python so that I will be able to use it in ipaconfigSimo Sorce2007-12-104-454/+8
|
* NTP configuration for client and server.Karl MacMillan2007-11-012-0/+90
| | | | | | | | Configure ipa servers as an ntp server and clients to (by default) us the ipa server as an ntp server. Also corrected the messages about which ports should be opened.
* Autotool ipa-client - patch from William Jon McCann <mccann@jhu.edu>Karl MacMillan2007-10-171-0/+16
|
* Better file parsing routines,Simo Sorce2007-09-061-124/+336
| | | | | also switch to recreate ldap.conf and krb5.conf from scratch on clients, avoid nasty failures in case the original files contained strange directives
* Complete autodiscovery with autoconfigurationSimo Sorce2007-08-302-25/+49
| | | | | | | The code is still not perfect and rely on a yet unreleased nss_ldap package that fix dns discovery problems within nss_ldap itself. Also the manipulation of krb5.conf need to be improved
* Initial configuration library importSimo Sorce2007-08-282-3/+229
|
* Add a prototype client tool to configure a client of the IPA serverSimo Sorce2007-08-163-0/+707
Right now it does only discovery (or fallback)