<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sssd.git/src/responder/pac, branch err_facility</title>
<subtitle>Experimental work on SSSD - Systen Security Services Daemon</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/'/>
<entry>
<title>Remove unused functions</title>
<updated>2013-03-04T09:41:31+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2013-03-03T11:45:21+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=275102c8f332323571d55370a705d4610d24f510'/>
<id>275102c8f332323571d55370a705d4610d24f510</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce IS_SUBDOMAIN() macro</title>
<updated>2013-02-10T21:08:47+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-16T03:19:36+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=4f118e3e6a25762f40a43e6dbefb09f44adbef32'/>
<id>4f118e3e6a25762f40a43e6dbefb09f44adbef32</id>
<content type='text'>
Fixes https://fedorahosted.org/sssd/ticket/1766
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes https://fedorahosted.org/sssd/ticket/1766
</pre>
</div>
</content>
</entry>
<entry>
<title>Parent and subdomains use the same sysdb</title>
<updated>2013-02-10T21:08:47+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-16T03:03:08+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=bfba0655bc129ebcffc20b1204e0f87549e0a74e'/>
<id>bfba0655bc129ebcffc20b1204e0f87549e0a74e</id>
<content type='text'>
Remove code that tries to get the 'right' sysdb, as it is always going
to get the same answer anyway since the recent patches to rework the
domains/sysdb relationship.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove code that tries to get the 'right' sysdb, as it is always going
to get the same answer anyway since the recent patches to rework the
domains/sysdb relationship.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change the way domains are linked.</title>
<updated>2013-02-10T21:08:47+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-15T01:30:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=bba1a5fd62cffcae076d1351df5a83fbc4a6ec17'/>
<id>bba1a5fd62cffcae076d1351df5a83fbc4a6ec17</id>
<content type='text'>
- Use a double-linked list for domains and subdomains.
- Never remove a subdomain, simply mark it as disabled if it becomes
  unused.
- Rework the way subdomains are refreshed.
  Now sysdb_update_subdomains() actually updates the current subdomains
  and marks as disabled the ones not found in the sysdb or add new ones
  found. It never removes them.
  Removal of missing domains from sysdb is deferred to the providers,
  which will perform it at refresh time, for the ipa provider that is
  done by ipa_subdomains_write_mappings() now.
  sysdb_update_subdomains() is then used to update the memory hierarchy
  of the subdomains.

- Removes sysdb_get_subdomains()
- Removes copy_subdomain()
- Add sysdb_subdomain_delete()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use a double-linked list for domains and subdomains.
- Never remove a subdomain, simply mark it as disabled if it becomes
  unused.
- Rework the way subdomains are refreshed.
  Now sysdb_update_subdomains() actually updates the current subdomains
  and marks as disabled the ones not found in the sysdb or add new ones
  found. It never removes them.
  Removal of missing domains from sysdb is deferred to the providers,
  which will perform it at refresh time, for the ipa provider that is
  done by ipa_subdomains_write_mappings() now.
  sysdb_update_subdomains() is then used to update the memory hierarchy
  of the subdomains.

- Removes sysdb_get_subdomains()
- Removes copy_subdomain()
- Add sysdb_subdomain_delete()
</pre>
</div>
</content>
</entry>
<entry>
<title>Add function get_next_domain()</title>
<updated>2013-02-10T21:08:47+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-14T22:04:00+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=0232747f04b650796db56fd7b487aee8a96fab03'/>
<id>0232747f04b650796db56fd7b487aee8a96fab03</id>
<content type='text'>
Use this function instead of explicitly calling domain-&gt;next

This function allows to get the next primary domain or to descend into the
subdomains and replaces also get_next_dom_or_subdom()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use this function instead of explicitly calling domain-&gt;next

This function allows to get the next primary domain or to descend into the
subdomains and replaces also get_next_dom_or_subdom()
</pre>
</div>
</content>
</entry>
<entry>
<title>NSS: Add original homedir to home directory template options</title>
<updated>2013-02-10T18:36:12+00:00</updated>
<author>
<name>Stephen Gallagher</name>
<email>sgallagh@redhat.com</email>
</author>
<published>2013-02-07T18:04:24+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=2cbb879c517f2c756a2eb3962527979bac01ddab'/>
<id>2cbb879c517f2c756a2eb3962527979bac01ddab</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/1805
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/1805
</pre>
</div>
</content>
</entry>
<entry>
<title>Add domain argument to sysdb_delete_user()</title>
<updated>2013-01-15T09:53:02+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-08T04:27:51+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=3412d14d65490c32414e72ac20fe21bad53ceb45'/>
<id>3412d14d65490c32414e72ac20fe21bad53ceb45</id>
<content type='text'>
Also remove sysdb_delete_domuser()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also remove sysdb_delete_domuser()
</pre>
</div>
</content>
</entry>
<entry>
<title>Add domain argument to sysdb_store_user()</title>
<updated>2013-01-15T09:53:01+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-08T01:03:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=6ac396bebb4cd3124711d26dce54263f6f9c7c45'/>
<id>6ac396bebb4cd3124711d26dce54263f6f9c7c45</id>
<content type='text'>
Also remove sysdb_store_domuser()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also remove sysdb_store_domuser()
</pre>
</div>
</content>
</entry>
<entry>
<title>Add domain to sysdb_search_group_by_gid()</title>
<updated>2013-01-15T09:49:20+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-07T21:47:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=5d72a91a37273c8c874640906fd2f7a70e606812'/>
<id>5d72a91a37273c8c874640906fd2f7a70e606812</id>
<content type='text'>
Also remove unused sysdb_search_domgroup_by_gid()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also remove unused sysdb_search_domgroup_by_gid()
</pre>
</div>
</content>
</entry>
<entry>
<title>Add domain to sysdb_search_user_by_uid()</title>
<updated>2013-01-15T09:49:20+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2013-01-06T23:27:50+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/sssd.git/commit/?id=a5a4e5b4836fdd693bab6e1c7f9d633d1440447d'/>
<id>a5a4e5b4836fdd693bab6e1c7f9d633d1440447d</id>
<content type='text'>
Also remove unused sysdb_search_domuser_by_uid()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also remove unused sysdb_search_domuser_by_uid()
</pre>
</div>
</content>
</entry>
</feed>
