<feed xmlns='http://www.w3.org/2005/Atom'>
<title>freeipa.git/install/tools/ipa-server-install, branch platform-master</title>
<subtitle>FreeIPA project</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/'/>
<entry>
<title>Convert installation tools to platform-independent access to system services</title>
<updated>2011-09-13T09:15:50+00:00</updated>
<author>
<name>Alexander Bokovoy</name>
<email>abokovoy@redhat.com</email>
</author>
<published>2011-09-12T21:11:54+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=bbbb550aaa13eb2ebdb113ff8738ed5c8f5277aa'/>
<id>bbbb550aaa13eb2ebdb113ff8738ed5c8f5277aa</id>
<content type='text'>
http://fedorahosted.org/freeipa/ticket/1605
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
http://fedorahosted.org/freeipa/ticket/1605
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix permissions in installers</title>
<updated>2011-09-07T11:02:43+00:00</updated>
<author>
<name>Martin Kosek</name>
<email>mkosek@redhat.com</email>
</author>
<published>2011-08-30T14:32:40+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=d0ce604b4d69d7f6fa5e0bb81647f839abd6291d'/>
<id>d0ce604b4d69d7f6fa5e0bb81647f839abd6291d</id>
<content type='text'>
Fix permissions for (configuration) files produced by
ipa-server-install or ipa-client-install. This patch is needed
when root has a umask preventing files from being world readable.

https://fedorahosted.org/freeipa/ticket/1644
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix permissions for (configuration) files produced by
ipa-server-install or ipa-client-install. This patch is needed
when root has a umask preventing files from being world readable.

https://fedorahosted.org/freeipa/ticket/1644
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve man pages structure</title>
<updated>2011-09-07T10:55:12+00:00</updated>
<author>
<name>Martin Kosek</name>
<email>mkosek@redhat.com</email>
</author>
<published>2011-09-05T09:04:17+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=dc3d0f387918b3de2f8e7898408e04e11cc30363'/>
<id>dc3d0f387918b3de2f8e7898408e04e11cc30363</id>
<content type='text'>
There are too many options in ipa-*-install scripts which makes it
difficult to read. This patch adds subsections to install script
online help and man pages to improve readability. No option has
been changed.

To further improve man pages:

1) All man pages were changed to have the same header and top-center
   title to provide united look.

2) Few typos in man pages have been fixed

https://fedorahosted.org/freeipa/ticket/1687
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There are too many options in ipa-*-install scripts which makes it
difficult to read. This patch adds subsections to install script
online help and man pages to improve readability. No option has
been changed.

To further improve man pages:

1) All man pages were changed to have the same header and top-center
   title to provide united look.

2) Few typos in man pages have been fixed

https://fedorahosted.org/freeipa/ticket/1687
</pre>
</div>
</content>
</entry>
<entry>
<title>Let Bind track data changes</title>
<updated>2011-08-31T14:46:12+00:00</updated>
<author>
<name>Martin Kosek</name>
<email>mkosek@redhat.com</email>
</author>
<published>2011-08-31T12:42:57+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=6a2dfde086bdda62964a9737a300818d2ab24a4b'/>
<id>6a2dfde086bdda62964a9737a300818d2ab24a4b</id>
<content type='text'>
Integrate new bind-dyndb-ldap features to automatically track
DNS data changes:

 1) Zone refresh
    Set --zone-refresh in installation to define number of seconds
    between bind-dyndb-ldap polls for new DNS zones. User now
    doesn't have to restart name server when a new zone is added.

 2) New zone notifications
    Use LDAP persistent search mechanism to immediately get
    notification when any new DNS zone is added. Use --zone-notif
    install option to enable. This option is mutually exclusive
    with Zone refresh.

To enable this functionality in existing IPA installations,
update a list of arguments for bind-dyndb-ldap in /etc/named.conf.
An example when zone refresh is disabled and DNS data change
notifications (argument psearch of bind-dyndb-ldap) are enabled:

dynamic-db "ipa" {
...
        arg "zone_refresh 0";
        arg "psearch yes";
};

This patch requires bind-dyndb-ldap-1.0.0-0.1.b1 or later.

https://fedorahosted.org/freeipa/ticket/826
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Integrate new bind-dyndb-ldap features to automatically track
DNS data changes:

 1) Zone refresh
    Set --zone-refresh in installation to define number of seconds
    between bind-dyndb-ldap polls for new DNS zones. User now
    doesn't have to restart name server when a new zone is added.

 2) New zone notifications
    Use LDAP persistent search mechanism to immediately get
    notification when any new DNS zone is added. Use --zone-notif
    install option to enable. This option is mutually exclusive
    with Zone refresh.

To enable this functionality in existing IPA installations,
update a list of arguments for bind-dyndb-ldap in /etc/named.conf.
An example when zone refresh is disabled and DNS data change
notifications (argument psearch of bind-dyndb-ldap) are enabled:

dynamic-db "ipa" {
...
        arg "zone_refresh 0";
        arg "psearch yes";
};

This patch requires bind-dyndb-ldap-1.0.0-0.1.b1 or later.

https://fedorahosted.org/freeipa/ticket/826
</pre>
</div>
</content>
</entry>
<entry>
<title>Add common is_installed() fn, better uninstall logging, check for errors.</title>
<updated>2011-08-29T20:50:43+00:00</updated>
<author>
<name>Rob Crittenden</name>
<email>rcritten@redhat.com</email>
</author>
<published>2011-08-29T15:16:52+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=d7618acb73f57a63aca0a9fcfa8bf5edb1cffdda'/>
<id>d7618acb73f57a63aca0a9fcfa8bf5edb1cffdda</id>
<content type='text'>
The installer and ipactl used two different methods to determine
whether IPA was configured, unify them.

When uninstalling report any thing that looks suspicious and warn
that a re-install may fail. This includes any remaining 389-ds instances
and any state or files that remains after all the module uninstallers
are complete.

Add wrappers for removing files and directories to log failures.

https://fedorahosted.org/freeipa/ticket/1715
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The installer and ipactl used two different methods to determine
whether IPA was configured, unify them.

When uninstalling report any thing that looks suspicious and warn
that a re-install may fail. This includes any remaining 389-ds instances
and any state or files that remains after all the module uninstallers
are complete.

Add wrappers for removing files and directories to log failures.

https://fedorahosted.org/freeipa/ticket/1715
</pre>
</div>
</content>
</entry>
<entry>
<title>Verify that the external CA certificate files are correct.</title>
<updated>2011-08-23T05:23:41+00:00</updated>
<author>
<name>Jan Cholasta</name>
<email>jcholast@redhat.com</email>
</author>
<published>2011-08-17T08:19:37+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=610faff6f3aad129979777cd7297129ef0a3bbc5'/>
<id>610faff6f3aad129979777cd7297129ef0a3bbc5</id>
<content type='text'>
ticket 1572
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ticket 1572
</pre>
</div>
</content>
</entry>
<entry>
<title>Add option to install without the automatic redirect to the Web UI.</title>
<updated>2011-08-19T03:24:29+00:00</updated>
<author>
<name>Jan Cholasta</name>
<email>jcholast@redhat.com</email>
</author>
<published>2011-08-16T17:34:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=b8d4f8ad9fc5e12785ae7eae0f7b773259b7bec1'/>
<id>b8d4f8ad9fc5e12785ae7eae0f7b773259b7bec1</id>
<content type='text'>
ticket 1570
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ticket 1570
</pre>
</div>
</content>
</entry>
<entry>
<title>Verify that passwords specified through command line options of ipa-server-install meet the length requirement.</title>
<updated>2011-08-19T00:49:05+00:00</updated>
<author>
<name>Jan Cholasta</name>
<email>jcholast@redhat.com</email>
</author>
<published>2011-08-15T07:02:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=cc7f9aa7a951d510973cd64711bd9eaa255a7fe3'/>
<id>cc7f9aa7a951d510973cd64711bd9eaa255a7fe3</id>
<content type='text'>
ticket 1621
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ticket 1621
</pre>
</div>
</content>
</entry>
<entry>
<title>Make sure messagebus is running prior to starting certmonger.</title>
<updated>2011-08-19T00:15:48+00:00</updated>
<author>
<name>Jan Cholasta</name>
<email>jcholast@redhat.com</email>
</author>
<published>2011-08-09T10:37:56+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=1ec531469ee0cf91ed9e150307d93e5ab12aa2a6'/>
<id>1ec531469ee0cf91ed9e150307d93e5ab12aa2a6</id>
<content type='text'>
ticket 1580
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ticket 1580
</pre>
</div>
</content>
</entry>
<entry>
<title>Ask for reverse DNS zone information in attended install right after asking for DNS forwarders, so that DNS configuration is done in one place.</title>
<updated>2011-08-09T11:12:19+00:00</updated>
<author>
<name>Jan Cholasta</name>
<email>jcholast@redhat.com</email>
</author>
<published>2011-07-26T12:53:19+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/abbra/public_git/freeipa.git/commit/?id=8edd7ed99874f114ec6ca6abbbdd4b91025211df'/>
<id>8edd7ed99874f114ec6ca6abbbdd4b91025211df</id>
<content type='text'>
ticket 1522
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ticket 1522
</pre>
</div>
</content>
</entry>
</feed>
