<feed xmlns='http://www.w3.org/2005/Atom'>
<title>freeipa.git/install/tools/ipa-replica-prepare, branch systemd-master</title>
<subtitle>FreeIPA project</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/'/>
<entry>
<title>Check hostname resolution sanity</title>
<updated>2011-10-13T04:54:37+00:00</updated>
<author>
<name>Martin Kosek</name>
<email>mkosek@redhat.com</email>
</author>
<published>2011-10-07T12:23:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=9bff6cb8a955c3f4b167e05856b40f6e2ee5dca8'/>
<id>9bff6cb8a955c3f4b167e05856b40f6e2ee5dca8</id>
<content type='text'>
Always check (even with --setup-dns or --no-host-dns) that if the
host name or ip address resolves, it resolves to sane value. Otherwise
report an error. Misconfigured /etc/hosts causing these errors could
harm the installation later.

https://fedorahosted.org/freeipa/ticket/1923
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Always check (even with --setup-dns or --no-host-dns) that if the
host name or ip address resolves, it resolves to sane value. Otherwise
report an error. Misconfigured /etc/hosts causing these errors could
harm the installation later.

https://fedorahosted.org/freeipa/ticket/1923
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve ipa-replica-prepare DNS check</title>
<updated>2011-10-06T09:27:50+00:00</updated>
<author>
<name>Martin Kosek</name>
<email>mkosek@redhat.com</email>
</author>
<published>2011-10-06T09:26:03+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=5b968f96328a3044c89d2499b91aa38aa9cf0c80'/>
<id>5b968f96328a3044c89d2499b91aa38aa9cf0c80</id>
<content type='text'>
Currently, verify_fqdn() function raises RuntimeError for every
problem with the hostname. This makes it difficult for tools
like ipa-replica-prepare to behave differently for a subset of
raised errors (for example to be able to create a DNS record for
new replica when verify_fqdn() reports a lookup error).

Implement own exceptions for verify_fqdn() that they can be safely
used to distinguish the error type.

https://fedorahosted.org/freeipa/ticket/1899
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, verify_fqdn() function raises RuntimeError for every
problem with the hostname. This makes it difficult for tools
like ipa-replica-prepare to behave differently for a subset of
raised errors (for example to be able to create a DNS record for
new replica when verify_fqdn() reports a lookup error).

Implement own exceptions for verify_fqdn() that they can be safely
used to distinguish the error type.

https://fedorahosted.org/freeipa/ticket/1899
</pre>
</div>
</content>
</entry>
<entry>
<title>replica-prepare: anonymous binds may be disallowed</title>
<updated>2011-10-06T06:41:27+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>ssorce@redhat.com</email>
</author>
<published>2011-10-06T06:37:17+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=652d315b3e486abb0b51e02437cd0f1243425a6e'/>
<id>652d315b3e486abb0b51e02437cd0f1243425a6e</id>
<content type='text'>
Fixes: https://fedorahosted.org/freeipa/ticket/1900
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes: https://fedorahosted.org/freeipa/ticket/1900
</pre>
</div>
</content>
</entry>
<entry>
<title>Install tools crash when password prompt is interrupted</title>
<updated>2011-10-06T06:28:15+00:00</updated>
<author>
<name>Martin Kosek</name>
<email>mkosek@redhat.com</email>
</author>
<published>2011-10-06T06:22:08+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=185ca8f6fc5e69e989e473c8b1d066aa2d8e5cb1'/>
<id>185ca8f6fc5e69e989e473c8b1d066aa2d8e5cb1</id>
<content type='text'>
When getpass.getpass() function is interrupted via CTRL+D, EOFError
exception is thrown. Most of the install tools are not prepared for
this event and crash with this exception. Make sure that it is
handled properly and nice error message is printed.

https://fedorahosted.org/freeipa/ticket/1916
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When getpass.getpass() function is interrupted via CTRL+D, EOFError
exception is thrown. Most of the install tools are not prepared for
this event and crash with this exception. Make sure that it is
handled properly and nice error message is printed.

https://fedorahosted.org/freeipa/ticket/1916
</pre>
</div>
</content>
</entry>
<entry>
<title>Detect CA installation type in ipa-replica-prepare and ipa-ca-install.</title>
<updated>2011-09-27T15:50:46+00:00</updated>
<author>
<name>Rob Crittenden</name>
<email>rcritten@redhat.com</email>
</author>
<published>2011-09-27T15:44:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=a41457ec3a905a68af60c1b359c25679c3c5a7b7'/>
<id>a41457ec3a905a68af60c1b359c25679c3c5a7b7</id>
<content type='text'>
ipa-ca-install can only add a dogtag CA to an IPA install.

ipa-replica-prepare can only be run on the initial master with a
selfsign backend.

https://fedorahosted.org/freeipa/ticket/1756
https://fedorahosted.org/freeipa/ticket/1757
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ipa-ca-install can only add a dogtag CA to an IPA install.

ipa-replica-prepare can only be run on the initial master with a
selfsign backend.

https://fedorahosted.org/freeipa/ticket/1756
https://fedorahosted.org/freeipa/ticket/1757
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix ipa-replica-prepare always warning the user about not using the system hostname.</title>
<updated>2011-09-26T15:11:09+00:00</updated>
<author>
<name>Jan Cholasta</name>
<email>jcholast@redhat.com</email>
</author>
<published>2011-09-26T09:34:16+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=5cd121d6dd620d8979328c443b9809c77c71c21b'/>
<id>5cd121d6dd620d8979328c443b9809c77c71c21b</id>
<content type='text'>
ticket 1717
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ticket 1717
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove checks for ds-replication plugin</title>
<updated>2011-09-22T11:14:23+00:00</updated>
<author>
<name>Martin Kosek</name>
<email>mkosek@redhat.com</email>
</author>
<published>2011-09-20T08:40:16+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=9ccd979f02b85e4d7cdccdf3502fead94643a08d'/>
<id>9ccd979f02b85e4d7cdccdf3502fead94643a08d</id>
<content type='text'>
The replication plugin is no longer shipped as a separate package.
Remove the code checking its existence.

https://fedorahosted.org/freeipa/ticket/1815
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The replication plugin is no longer shipped as a separate package.
Remove the code checking its existence.

https://fedorahosted.org/freeipa/ticket/1815
</pre>
</div>
</content>
</entry>
<entry>
<title>install: We do not need a kpasswd keytab anymore</title>
<updated>2011-08-31T20:27:20+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>ssorce@redhat.com</email>
</author>
<published>2011-08-31T15:45:07+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=801dc97adbf9eacd16c67c188500f148d9507b12'/>
<id>801dc97adbf9eacd16c67c188500f148d9507b12</id>
<content type='text'>
We now use MIT's kadmin instead of our old ipa_kpasswd daemon.
kadmind knows how to fetch the keys directly from the database and doesn't need
a keytab on the filesystem.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We now use MIT's kadmin instead of our old ipa_kpasswd daemon.
kadmind knows how to fetch the keys directly from the database and doesn't need
a keytab on the filesystem.
</pre>
</div>
</content>
</entry>
<entry>
<title>install: We do not need a ldap password anymore</title>
<updated>2011-08-31T20:27:20+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>ssorce@redhat.com</email>
</author>
<published>2011-08-31T15:39:53+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=096cc43fe604f9145578d6e5ab32a778563b9737'/>
<id>096cc43fe604f9145578d6e5ab32a778563b9737</id>
<content type='text'>
Our new ipa-kdb driver access ldap via ldapi:// and EXTERNAL auth and doesn't
need a bind password anymore.

Fixes: https://fedorahosted.org/freeipa/ticket/1743
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Our new ipa-kdb driver access ldap via ldapi:// and EXTERNAL auth and doesn't
need a bind password anymore.

Fixes: https://fedorahosted.org/freeipa/ticket/1743
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in ipa-replica-prepare</title>
<updated>2011-07-18T12:54:41+00:00</updated>
<author>
<name>Martin Kosek</name>
<email>mkosek@redhat.com</email>
</author>
<published>2011-07-18T12:50:05+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=1a207bb23c88da19d4cc0eb455a2734278da41d2'/>
<id>1a207bb23c88da19d4cc0eb455a2734278da41d2</id>
<content type='text'>
https://fedorahosted.org/freeipa/ticket/1327
https://fedorahosted.org/freeipa/ticket/1347
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/freeipa/ticket/1327
https://fedorahosted.org/freeipa/ticket/1347
</pre>
</div>
</content>
</entry>
</feed>
