summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-install
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch to fix the installer crashing if selinux is disabled. Also changesmccann@jhu.edu2007-10-021-1/+57
| | | | | | | the exception to contain the complete command. Add a check to make sure installer is running as root. Add signal handler to detect a user-cancelled installation. Detect existing DS instances and prompt to remove them.
* Check passwords are not emptySimo Sorce2007-09-281-3/+12
|
* Install the web guiKarl MacMillan2007-09-281-1/+7
| | | | | | | | | | | | | | | | | | | Install the turbogears web gui including an init script. This patch includes a few related changes: * create a production configuration * rename the web gui startup scrip to ipa-webgui * add an init script * chkconfig on the ipa-webgui init script * make the start script properly daemonize the app when not in a development directory. * Install everything to the correct places (/usr/sbin/ipa-webgui and /usr/share/ipa/ipagui mainly). There are some things still left to do: * Sort out the logging - the config needs to be adjusted so that logging messages end up in /var/log.
* Misc small fixesKarl MacMillan2007-09-282-2/+3
| | | | | | | * Remove the rpmbuild tree with the dist-clean target. * Move ipa-server-setupssl from /usr/sbin to /usr/share/ipa * Check in requirement change for generated freeipa-python.spec * Fix interactive hostname in ipa-server-install.
* Make apache work with selinuxKarl MacMillan2007-09-281-0/+3
| | | | | | The default configuration of the apache selinux policy doesn't allow apache to connect to the turbogears gui. This sets the correct boolean to allow that connection.
* Give ipa-adduser, ipa-addgroup and ipa-usermod an interactive modercritten@redhat.com2007-09-211-0/+2
| | | | | | | Add ipa-passwd tool Add simple field validation package This patch adds a package requirement, python-krbV. This is needed to determine the current user based on their kerberos ticket.
* Remove support for LDAP proxy connectionsrcritten@redhat.com2007-09-203-19/+0
|
* Initial support for confiuguring a DNS Server during installation.Simo Sorce2007-09-202-23/+195
| | | | It's not perfect yet but good enough to include it.
* Better we do not fiddle with /etc/hosts, make sure to abort and let the adminSimo Sorce2007-09-131-21/+2
| | | | fix it.
* Better way to ask for the Realm name, with implicit defaultSimo Sorce2007-09-121-16/+10
|
* Add confirmation when asking un-echoed passwordsSimo Sorce2007-09-121-3/+27
|
* Avoid showing passwords.Simo Sorce2007-09-121-3/+4
| | | | Patch from William Jon McCann <mccann@jhu.edu>
* Fix duplicate entry error to be more descriptive.Kevin McCarthy2007-09-071-0/+1
| | | | | | Add TurboGears to required package list Clear password on Edit Person page. Change uidnumber/gidnumber on Add Person to say 'Generated by server'
* Add required packages to READMEKevin McCarthy2007-09-071-0/+7
|
* Reference the interactive method by defaultSimo Sorce2007-09-071-2/+4
|
* Add group command-line tools to the Makefilercritten@redhat.com2007-09-071-8/+37
| | | | Updated installation instructions
* merge ipa-server/ipaserver/util.py into ipa-python/ipautil.pySimo Sorce2007-09-041-1/+1
| | | | this way freeipa-client does not depend on freeipa-server
* Add password request for admin userSimo Sorce2007-08-311-15/+46
| | | | | | | | | Set password for admin user using the Directory Mangaer account and the mozldapldappaswd binary to get and SSL connection Fix some timeout problems with deploying keytabs Fix ipa_pwd_extop to actuallt correctly detect an SSL connection Do not ask for the user to use for the directory unless 'dirsrv' is an existing user which may clash, create it silently
* More DIT fixes discovered after testingSimo Sorce2007-08-312-3/+3
|
* Integrate corrections pointed out on the listSimo Sorce2007-08-303-11/+10
|
* Finalize DIT, this is waht we are probably going to have in the end,Simo Sorce2007-08-294-62/+83
| | | | | | | | or something very close to this one Add default groups and admin user TODO: need to discuss more in deep uid/gid generation, this will probably change as soon as the DNA plugin is activated
* Initial support for Groupsrcritten@redhat.com2007-08-242-0/+4
| | | | | | | | | Create separate object for Users and Groups (using same base class) Check for uniqueness before adding new users and groups Remove user_container from everything but add operations Abstract out a number of functions that are common across users and groups Make sure all strings passed in to be in a filter are checked Add new error message: No modifications specified
* Add interactive prompts to ipa-server-installSimo Sorce2007-08-201-14/+108
| | | | | | Change unattended flag to be -U Change master password flag to be -P instead of -m Improve ipa-client-install readability for user prompts
* Remove dependncy on libmhash and use openssl md4 functionsSimo Sorce2007-08-201-1/+1
| | | | | | | Remove all dependencies on mhash Remove code optimizatrion from Makefiles, right now these are developers targeted builds, so it is better to have debugging symbols around
* Updated dep list.Karl MacMillan2007-08-171-3/+3
|
* Make ipa-kpasswd start immediatelySimo Sorce2007-08-151-1/+1
|
* General fixes.Simo Sorce2007-08-151-1/+1
| | | | Do not start ipa_kpasswd by default yet
* in F7 all directory names have changed from fedora-ds to dirsrvSimo Sorce2007-08-153-6/+6
| | | | which should also be the name used in DS 8.0, change all occurences
* Activate the passwd extop plugin and ipa-kpasswd daemonSimo Sorce2007-08-151-1/+7
|
* Add deps to READMESimo Sorce2007-08-151-1/+1
|
* Updates to build kpaswd and the slapi plugins.Karl MacMillan2007-08-101-0/+1
|
* Start the DS and KDC on bootrcritten@redhat.com2007-08-091-1/+7
|
* merge in changes from upstreamSimo Sorce2007-08-098-60/+152
|\
| * - Abstracted client class to work directly or over RPCrcritten@redhat.com2007-08-068-58/+144
| | | | | | | | | | | | | | | | | | | | | | - Add mod_auth_kerb and cyrus-sasl-gssapi to Requires - Remove references to admin server in ipa-server-setupssl - Generate a client certificate for the XML-RPC server to connect to LDAP with - Create a keytab for Apache - Create an ldif with a test user - Provide a certmap.conf for doing SSL client authentication - Update tools to use kerberos - Add User class
| * Add local-dist target.Karl MacMillan2007-08-011-1/+8
| | | | | | | | Remove hard-coded config.
* | remove unknown patch fileSimo Sorce2007-08-091-288/+0
| |
* | Add dependency and a commentSimo Sorce2007-08-081-0/+1
| |
* | Fix the bind zone template, or kpasswd will not workSimo Sorce2007-08-081-3/+3
| |
* | Try to fix dir layout and recover missing filesSimo Sorce2007-08-012-0/+38
| |
* | Merge from upstreamSimo Sorce2007-08-014-40/+292
|/
* Fix typo / buglets in setup scripts.Karl MacMillan2007-08-011-2/+2
| | | | Add fallback to ds_newinst.pl.
* Minor fix to adduser.Karl MacMillan2007-07-311-1/+5
| | | | Make ipa-server-install restart htppd
* First part of xml-rpc patch.Karl MacMillan2007-07-301-0/+2
|
* Update for DESTDIRKarl MacMillan2007-07-271-1/+1
|
* Finish python library reorg.Karl MacMillan2007-07-272-8/+10
|
* More reorgnization.Karl MacMillan2007-07-278-536/+0
|
* Finish removing extra files.Karl MacMillan2007-07-271-0/+0
|
* Removed unnecessary files (which were added to work around a mercurial bug)Karl MacMillan2007-07-276-177/+0
|
* Update for new python library layout.Karl MacMillan2007-07-2711-3/+358
|
* Reorganized repo to reflect packaging.Karl MacMillan2007-07-2719-0/+1362