summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipaserver/krbinstance.py
Commit message (Collapse)AuthorAgeFilesLines
* Don't print error on fresh installSimo Sorce2007-10-121-3/+5
|
* Karl MacMillan wrote:Karl MacMillan2007-10-091-2/+2
| | | | | | | | | | | | | > > This largish patch makes the build and installation work on 64bit > > machines. The only catch here is that to get a 64bit build you need to > > set LIBDIR on make: > > > > make install LIBDIR=/usr/lib64 > > > > The spec file does this correctly. I couldn't find any reliable way to > > guess this that works both on real systems and in the almost entirely > > empty rpm build root (you can't, for example, check for the existence > > of /usr/lib64).
* On 10/4/07, Rob Crittenden <rcritten@redhat.com> wrote:Karl MacMillan2007-10-081-6/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > William Jon McCann wrote: > > Hi, > > > > After playing with the install (repeatedly) I ended up with a lot of > > duplicate values in: > > /etc/sysconfig/dirsrv > > /etc/sysconfig/ipa-kpasswd > > > > Here is a patch that should fix this. It modifies the file "in-place" > > and removes lines that matching the key (or commented key) and then > > appends the new key=value. > > > > Jon > > Cool, I've wanted to fix this for a while (and recently aborted a switch > from open with "a" to "w"). > > What happens if the file doesn't exist yet? Do we need to wrap the > fileinput loop in either a try/except or just look to see if the file > exists first (my vote)? > > Something like: > > def update_key_val_in_file(filename, key, val): > if os.path.exists(filename): > pattern = "^[\s#]*%s\s*=" % re.escape(key) > p = re.compile(pattern) > for line in fileinput.input(filename, inplace=1): > if not p.search(line): > sys.stdout.write(line) > fileinput.close() > f = open(filename, "a") > f.write("%s=%s\n" % (key, val)) > f.close() Good point. In genera,l I prefer doing a try because it is a little less racy but in this case it doesn't make a difference. Updated patch attached. Thanks, Jon
* Try to catch more error conditions during installationrcritten@redhat.com2007-10-031-7/+37
| | | | | | Modify the way we detect SELinux to use selinuxenabled instead of using a try/except. Handle SASL/GSSAPI authentication failures when getting a connection
* Initial support for confiuguring a DNS Server during installation.Simo Sorce2007-09-201-9/+3
| | | | It's not perfect yet but good enough to include it.
* Overwrite ldappwd file to fix bug when reinstalling IPA.Karl MacMillan2007-09-111-1/+1
|
* Fix dsinstance.py and krbinstance.py importsKevin McCarthy2007-09-061-1/+1
|
* Add password request for admin userSimo Sorce2007-08-311-2/+27
| | | | | | | | | 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
* Fix copy&paste error, its not the conf files we need access to,Simo Sorce2007-08-301-2/+2
| | | | we need to access the generated keytabs
* General fixes.Simo Sorce2007-08-151-2/+1
| | | | Do not start ipa_kpasswd by default yet
* in F7 all directory names have changed from fedora-ds to dirsrvSimo Sorce2007-08-151-7/+7
| | | | which should also be the name used in DS 8.0, change all occurences
* Use relative .so names for plugin so that lib/lib64 does not get in the waySimo Sorce2007-08-151-1/+1
| | | | change the pwd-extop conf ldif to a more sensible name
* Activate the passwd extop plugin and ipa-kpasswd daemonSimo Sorce2007-08-151-5/+10
|
* export kpasswd keytab during installation processSimo Sorce2007-08-091-0/+10
|
* typoSimo Sorce2007-08-091-1/+1
|
* merge in changes from upstreamSimo Sorce2007-08-091-0/+28
|\
| * Generate /etc/httpd/conf.d/ipa.conf from a template so the realm canrcritten@redhat.com2007-08-061-0/+8
| | | | | | | | be set during installation
| * - Abstracted client class to work directly or over RPCrcritten@redhat.com2007-08-061-0/+18
| | | | | | | | | | | | | | | | | | | | | | - 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
* | set preauth on kadmin/changepw otherwise the kpasswd can't acquire a ticketSimo Sorce2007-08-081-0/+8
| |
* | Try to fix dir layout and recover missing filesSimo Sorce2007-08-011-16/+10
| |
* | Merge from upstreamSimo Sorce2007-08-011-2/+8
|/
* More reorgnization.Karl MacMillan2007-07-271-0/+177