Bug 1437199 - sssd-nfs-idmap-1.15.2-1.fc25.x86_64 conflicts with file from package sssd-common-1.15.1-1.fc25.x86_64
Summary: sssd-nfs-idmap-1.15.2-1.fc25.x86_64 conflicts with file from package sssd-com...
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Fedora
Classification: Fedora
Component: sssd
Version: 25
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Lukas Slebodnik
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2017-03-29 17:57 UTC by Elia Devito
Modified: 2017-05-12 19:23 UTC (History)
10 users (show)

Fixed In Version: sssd-1.15.2-3.fc26 sssd-1.15.2-3.fc25 sssd-1.15.2-3.fc24
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2017-05-04 13:31:55 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)
dnf.log (7.72 KB, text/plain)
2017-03-29 22:32 UTC, Elia Devito
no flags Details
requested logs (2.71 KB, application/x-xz)
2017-04-08 14:47 UTC, Elia Devito
no flags Details
debugdata dnf update --debugsolver -y (9.54 MB, application/x-bzip)
2017-04-08 14:56 UTC, Elia Devito
no flags Details
debugdata dnf update --debugsolver --best -y (9.54 MB, application/x-bzip)
2017-04-08 14:57 UTC, Elia Devito
no flags Details

Description Elia Devito 2017-03-29 17:57:32 UTC
Description of problem:
sssd-nfs-idmap-1.15.2-1.fc25.x86_64 conflicts with file from package sssd-common-1.15.1-1.fc25.x86_64

Version-Release number of selected component (if applicable): 1.15.2-1.fc25.x86_64


How reproducible:


Steps to Reproduce:
1. dnf upgrade

Actual results:
Error: Transaction check error:
  file /usr/share/man/man5/sss_rpcidmapd.5.gz from install of sssd-nfs-idmap-1.15.2-1.fc25.x86_64 conflicts with file from package sssd-common-1.15.1-1.fc25.x86_64

Expected results:
package upgrade

Comment 1 Lukas Slebodnik 2017-03-29 18:57:01 UTC
I am curious how "dnf upgrade" can upgrade just sssd-nfs-idmap without sssd-common.

Comment 2 Jakub Hrozek 2017-03-29 21:42:21 UTC
right, /var/log/dnf.log would help

Comment 3 Elia Devito 2017-03-29 22:32:05 UTC
Created attachment 1267381 [details]
dnf.log

dnf upgrade log

Comment 4 Sumit Bose 2017-03-30 07:19:02 UTC
The sssd-nfs-idmap package has do dependencies to any other SSSD package or library because the plugin already includes the SSSD client code:

$ rpm --requires -q sssd-nfs-idmap
libc.so.6()(64bit)
libc.so.6(GLIBC_2.14)(64bit)
libc.so.6(GLIBC_2.2.5)(64bit)
libc.so.6(GLIBC_2.3.4)(64bit)
libc.so.6(GLIBC_2.4)(64bit)
libc.so.6(GLIBC_2.7)(64bit)
libc.so.6(GLIBC_2.8)(64bit)
libnfsidmap.so.0()(64bit)
rpmlib(CompressedFileNames) <= 3.0.4-1
rpmlib(FileDigests) <= 4.6.0-1
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
rpmlib(PayloadIsXz) <= 5.2-1
rtld(GNU_HASH)


I guess we should add an explicit dependency in the spec file like:

diff --git a/sssd.spec b/sssd.spec
index 185e482..48f669a 100644
--- a/sssd.spec
+++ b/sssd.spec
@@ -529,6 +529,7 @@ and SIDs.
 Summary: SSSD plug-in for NFSv4 rpc.idmapd
 Group:  Applications/System
 License: GPLv3+
+Requires: sssd-common = %{version}-%{release}
 
 %description nfs-idmap
 The libnfsidmap sssd module provides a way for rpc.idmapd to call SSSD to map

Comment 5 Sumit Bose 2017-03-30 07:28:41 UTC
Wasn't there some time ago a ticket asking to remove some internal dependencies so that a plugin can be installed without pulling in all the other SSSD packages because if the plugin is only installed but not configured SSSD is not needed. I wonder if this was about the NFS idmap plugin? In this case adding a Requires might not be the best solution. Maybe then a Conflicts against older versions? But I'm not sure if then dnf update then will update SSSD if SSSD is install or if it would just fail?

Comment 6 Lukas Slebodnik 2017-03-30 08:23:28 UTC
(In reply to Sumit Bose from comment #4)
> The sssd-nfs-idmap package has do dependencies to any other SSSD package or
> library because the plugin already includes the SSSD client code:
> 
> $ rpm --requires -q sssd-nfs-idmap
> libc.so.6()(64bit)
> libc.so.6(GLIBC_2.14)(64bit)
> libc.so.6(GLIBC_2.2.5)(64bit)
> libc.so.6(GLIBC_2.3.4)(64bit)
> libc.so.6(GLIBC_2.4)(64bit)
> libc.so.6(GLIBC_2.7)(64bit)
> libc.so.6(GLIBC_2.8)(64bit)
> libnfsidmap.so.0()(64bit)
> rpmlib(CompressedFileNames) <= 3.0.4-1
> rpmlib(FileDigests) <= 4.6.0-1
> rpmlib(PayloadFilesHavePrefix) <= 4.0-1
> rpmlib(PayloadIsXz) <= 5.2-1
> rtld(GNU_HASH)
> 

There is just a weak dependency.

sh$ rpm -q --whatrecommends                    
sssd-common-1.15.2-1.fc27.x86_64

And issue is caused by movin man page from sssd-common -> sssd-nfs-idmap

Comment 7 Lukas Slebodnik 2017-03-30 08:31:24 UTC
(In reply to Elia Devito from comment #3)
> Created attachment 1267381 [details]
> dnf.log
> 
> dnf upgrade log

It didn't help a lot.

Please provide output of following commands.

  rpm -q sssd-common sssd-nfs-idmap libsolv hawkey dnf
  dnf update --debugsolver -y

And attach archive of debugdata


BTW Does dnf update --best help?
If not then please attach another archive data from command
  dnf update --debugsolver --best -y

Comment 8 Lukas Slebodnik 2017-03-30 11:43:09 UTC
Upstream ticket:
https://pagure.io/SSSD/sssd/issue/3351

Comment 9 Lukas Slebodnik 2017-03-30 11:47:23 UTC
(In reply to Lukas Slebodnik from comment #8)
> Upstream ticket:
> https://pagure.io/SSSD/sssd/issue/3351

Sorry wrong BZ

Comment 10 Jim Riggs 2017-04-07 18:02:55 UTC
Ran into this as well when trying to do an update.

I did try the dnf update

I had to remove the package sssd-nfs-idmap.  Once this was done, dnf upgrade went fine.

But I cannot install the package sssd-nfs-idmap.

Downloading Packages:
sssd-nfs-idmap-1.15.2-1.fc25.x86_64.rpm         252 kB/s |  75 kB     00:00
--------------------------------------------------------------------------------
Total                                            99 kB/s |  75 kB     00:00
Running transaction check
Transaction check succeeded.
Running transaction test
The downloaded packages were saved in cache until the next successful transaction.
You can remove cached packages by executing 'dnf clean packages'.
Error: Transaction check error:
  file /usr/share/man/man5/sss_rpcidmapd.5.gz from install of sssd-nfs-idmap-1.15.2-1.fc25.x86_64 conflicts with file from package sssd-common-1.15.1-1.fc25.x86_64

Error Summary
-------------

Comment 11 Lukas Slebodnik 2017-04-07 20:42:06 UTC
(In reply to Jim Riggs from comment #10)
> Ran into this as well when trying to do an update.
> 
> I did try the dnf update
> 
> I had to remove the package sssd-nfs-idmap.  Once this was done, dnf upgrade
> went fine.
>
Did you call just a "dnf update" ?
becaue I cannot see a reason why "sssd-nfs-idmap" would be updated to 1.15.2-1 and "sssd-common" would not be updated to the same version.

BTW after upgrade you should have sssd-common-1.15.2-1 on your system and not
sssd-common-1.15.1-1.

> But I cannot install the package sssd-nfs-idmap.
> 
> Downloading Packages:
> sssd-nfs-idmap-1.15.2-1.fc25.x86_64.rpm         252 kB/s |  75 kB     00:00
> -----------------------------------------------------------------------------
> ---
> Total                                            99 kB/s |  75 kB     00:00
> Running transaction check
> Transaction check succeeded.
> Running transaction test
> The downloaded packages were saved in cache until the next successful
> transaction.
> You can remove cached packages by executing 'dnf clean packages'.
> Error: Transaction check error:
>   file /usr/share/man/man5/sss_rpcidmapd.5.gz from install of
> sssd-nfs-idmap-1.15.2-1.fc25.x86_64 conflicts with file from package
> sssd-common-1.15.1-1.fc25.x86_64
> 
> Error Summary
> -------------

I have an idea how to fix it. But there might be other bug which would be hidden
by such fix. Could you provide data from comment7?

Comment 12 Elia Devito 2017-04-08 14:47:12 UTC
Created attachment 1270042 [details]
requested logs

It seems that there are two versions of sssd installed, I also provided output of `rpm -qa | grep sssd-`

Comment 13 Elia Devito 2017-04-08 14:56:37 UTC
Created attachment 1270043 [details]
debugdata dnf update --debugsolver -y

Comment 14 Elia Devito 2017-04-08 14:57:28 UTC
Created attachment 1270044 [details]
debugdata dnf update --debugsolver --best -y

Comment 15 Elia Devito 2017-04-08 15:31:56 UTC
I removed all 1.15.1 SSSD packages and the problem seems solved.

now I have only follow packages installed:

sssd-krb5-1.15.2-1.fc25.x86_64
sssd-ipa-1.15.2-1.fc25.x86_64
sssd-krb5-common-1.15.2-1.fc25.x86_64
sssd-1.15.2-1.fc25.x86_64
sssd-common-pac-1.15.2-1.fc25.x86_64
sssd-ldap-1.15.2-1.fc25.x86_64
sssd-client-1.15.2-1.fc25.x86_64
sssd-proxy-1.15.2-1.fc25.x86_64
sssd-common-1.15.2-1.fc25.x86_64
sssd-ad-1.15.2-1.fc25.x86_64

sssd-nfs-idmap isn't required by dnf upgrade but if i try to install it manually the installation works fine

Comment 16 Lukas Slebodnik 2017-04-08 16:06:58 UTC
Hmm, this is the most interesting
# rpm -qa | grep sssd-

  sssd-krb5-common-1.15.1-1.fc25.x86_64
  sssd-krb5-1.15.1-1.fc25.x86_64
  sssd-krb5-1.15.2-1.fc25.x86_64
  sssd-ipa-1.15.2-1.fc25.x86_64
  sssd-1.15.1-1.fc25.x86_64
  sssd-krb5-common-1.15.2-1.fc25.x86_64
  sssd-1.15.2-1.fc25.x86_64
  sssd-common-pac-1.15.2-1.fc25.x86_64
  sssd-ldap-1.15.2-1.fc25.x86_64
  sssd-nfs-idmap-1.15.1-1.fc25.x86_64
  sssd-client-1.15.1-1.fc25.x86_64
  sssd-client-1.15.2-1.fc25.x86_64
  sssd-common-pac-1.15.1-1.fc25.x86_64
  sssd-ipa-1.15.1-1.fc25.x86_64
  sssd-ldap-1.15.1-1.fc25.x86_64
  sssd-proxy-1.15.2-1.fc25.x86_64
  sssd-common-1.15.1-1.fc25.x86_64
  sssd-proxy-1.15.1-1.fc25.x86_64
  sssd-common-1.15.2-1.fc25.x86_64
  sssd-ad-1.15.1-1.fc25.x86_64
  sssd-ad-1.15.2-1.fc25.x86_64

My experience is that it can happen only in case of broken transaction in upgrade ( cleanup was not finished ). 

Did it happen to you? Do you remeber the reason?
Maybe you can find reason in dnf history.

BTW you should be able check consistency of rpm database with "yum-deprecated check". "dnf check" is only in dnf-2+.

Comment 17 Lukas Slebodnik 2017-04-08 16:09:29 UTC
Anyway, it is a packaging bug in sssd
Reproducer:
* dnf install --allowerasing --disablerepo=updates --debuglevel=0 --assumeyes sssd-common
* rpm -q sssd-common sssd-nfs-idmap
  sssd-common-1.14.2-1.fc25.x86_64
  sssd-nfs-idmap-1.14.2-1.fc25.x86_64
* dnf update --assumeyes --debuglevel=0 sssd-nfs-idmap
Error: Transaction check error:
  file /usr/share/man/man5/sss_rpcidmapd.5.gz from install of sssd-nfs-idmap-1.15.2-1.fc25.x86_64 conflicts with file from package sssd-common-1.14.2-1.fc25.x86_64

Error Summary
-------------

Comment 18 Elia Devito 2017-04-08 18:06:28 UTC
I have finded some duplicate packages (presumably falied transaction) and fixed it.

now I have strange behavior:

# rpm -qa | grep sssd-

  sssd-common-pac-1.15.2-1.fc25.x86_64
  sssd-krb5-1.15.2-1.fc25.x86_64
  sssd-client-1.15.2-1.fc25.x86_64
  sssd-krb5-common-1.15.2-1.fc25.x86_64
  sssd-ldap-1.15.2-1.fc25.x86_64
  sssd-nfs-idmap-1.15.2-1.fc25.x86_64
  sssd-common-1.15.2-1.fc25.x86_64
  sssd-ad-1.15.2-1.fc25.x86_64
  sssd-proxy-1.15.2-1.fc25.x86_64

# dnf downgrade sssd-common --allowerasing (sssd-nfs-idmap not in list)

  Error: Transaction check error:
    file /usr/share/man/man5/sss_rpcidmapd.5.gz from install of sssd-common-1.14.2-1.fc25.x86_64 conflicts with file from package sssd-nfs-idmap-1.15.2-1.fc25.x86_64

# dnf remove sssd-nfs-idmap -y

# rpm -qa | grep sssd-
  sssd-krb5-1.15.2-1.fc25.x86_64
  sssd-krb5-common-1.15.2-1.fc25.x86_64
  sssd-ldap-1.15.2-1.fc25.x86_64
  sssd-common-1.15.2-1.fc25.x86_64
  sssd-ad-1.15.2-1.fc25.x86_64
  sssd-proxy-1.15.2-1.fc25.x86_64
  sssd-client-1.15.2-1.fc25.x86_64
  sssd-common-pac-1.15.2-1.fc25.x86_64

# dnf downgrade sssd-common --allowerasing (include sssd-nfs-idmap as new package ??? O_o)

# rpm -qa | grep sssd- (after downgrade)

  sssd-client-1.14.2-1.fc25.x86_64
  sssd-common-pac-1.14.2-1.fc25.x86_64
  sssd-ldap-1.14.2-1.fc25.x86_64
  sssd-krb5-common-1.14.2-1.fc25.x86_64
  sssd-krb5-1.14.2-1.fc25.x86_64
  sssd-nfs-idmap-1.14.2-1.fc25.x86_64
  sssd-common-1.14.2-1.fc25.x86_64
  sssd-ad-1.14.2-1.fc25.x86_64
  sssd-proxy-1.14.2-1.fc25.x86_64

# dnf upgrade (works fine and upgrade all sssd packages to 1.15.2 including sssd-nfs-idmap)

Comment 19 Lukas Slebodnik 2017-04-08 21:42:19 UTC
(In reply to Elia Devito from comment #18)
> I have finded some duplicate packages (presumably falied transaction) and
> fixed it.
> 
> now I have strange behavior:
> 
> # rpm -qa | grep sssd-
> 
>   sssd-common-pac-1.15.2-1.fc25.x86_64
>   sssd-krb5-1.15.2-1.fc25.x86_64
>   sssd-client-1.15.2-1.fc25.x86_64
>   sssd-krb5-common-1.15.2-1.fc25.x86_64
>   sssd-ldap-1.15.2-1.fc25.x86_64
>   sssd-nfs-idmap-1.15.2-1.fc25.x86_64
>   sssd-common-1.15.2-1.fc25.x86_64
>   sssd-ad-1.15.2-1.fc25.x86_64
>   sssd-proxy-1.15.2-1.fc25.x86_64
> 
> # dnf downgrade sssd-common --allowerasing (sssd-nfs-idmap not in list)
> 
>   Error: Transaction check error:
>     file /usr/share/man/man5/sss_rpcidmapd.5.gz from install of
> sssd-common-1.14.2-1.fc25.x86_64 conflicts with file from package
> sssd-nfs-idmap-1.15.2-1.fc25.x86_64
>
It is expected because sss_rpcidmapd.5.gz was moved from sssd-common to
sssd-nfs-idmap in 1.15.2-1. And there is just weak dependency between these two packages.
 
> # dnf remove sssd-nfs-idmap -y
> 
> # rpm -qa | grep sssd-
>   sssd-krb5-1.15.2-1.fc25.x86_64
>   sssd-krb5-common-1.15.2-1.fc25.x86_64
>   sssd-ldap-1.15.2-1.fc25.x86_64
>   sssd-common-1.15.2-1.fc25.x86_64
>   sssd-ad-1.15.2-1.fc25.x86_64
>   sssd-proxy-1.15.2-1.fc25.x86_64
>   sssd-client-1.15.2-1.fc25.x86_64
>   sssd-common-pac-1.15.2-1.fc25.x86_64
> 
> # dnf downgrade sssd-common --allowerasing (include sssd-nfs-idmap as new
> package ??? O_o)
>
It was installed because because sssd-common recommends sssd-nfs-idmap.
It would not be installed after disabling installation of recommended packages.
  dnf downgrade --allowerasing --setopt=install_weak_deps=false sssd-common 
 
> # rpm -qa | grep sssd- (after downgrade)
> 
>   sssd-client-1.14.2-1.fc25.x86_64
>   sssd-common-pac-1.14.2-1.fc25.x86_64
>   sssd-ldap-1.14.2-1.fc25.x86_64
>   sssd-krb5-common-1.14.2-1.fc25.x86_64
>   sssd-krb5-1.14.2-1.fc25.x86_64
>   sssd-nfs-idmap-1.14.2-1.fc25.x86_64
>   sssd-common-1.14.2-1.fc25.x86_64
>   sssd-ad-1.14.2-1.fc25.x86_64
>   sssd-proxy-1.14.2-1.fc25.x86_64
> 
> # dnf upgrade (works fine and upgrade all sssd packages to 1.15.2 including
> sssd-nfs-idmap)
Because "dnf upgrade" will try to upgrade all packages and not just subset as in 
Comment17.

Comment 20 Jim Riggs 2017-04-09 22:50:09 UTC
(In reply to Lukas Slebodnik from comment #11)
> (In reply to Jim Riggs from comment #10)
> > Ran into this as well when trying to do an update.
> > 
> > I did try the dnf update
> > 
> > I had to remove the package sssd-nfs-idmap.  Once this was done, dnf upgrade
> > went fine.
> >
> Did you call just a "dnf update" ?
> becaue I cannot see a reason why "sssd-nfs-idmap" would be updated to
> 1.15.2-1 and "sssd-common" would not be updated to the same version.
> 
> BTW after upgrade you should have sssd-common-1.15.2-1 on your system and not
> sssd-common-1.15.1-1.
> 
> > But I cannot install the package sssd-nfs-idmap.
> > 
> > Downloading Packages:
> > sssd-nfs-idmap-1.15.2-1.fc25.x86_64.rpm         252 kB/s |  75 kB     00:00
> > -----------------------------------------------------------------------------
> > ---
> > Total                                            99 kB/s |  75 kB     00:00
> > Running transaction check
> > Transaction check succeeded.
> > Running transaction test
> > The downloaded packages were saved in cache until the next successful
> > transaction.
> > You can remove cached packages by executing 'dnf clean packages'.
> > Error: Transaction check error:
> >   file /usr/share/man/man5/sss_rpcidmapd.5.gz from install of
> > sssd-nfs-idmap-1.15.2-1.fc25.x86_64 conflicts with file from package
> > sssd-common-1.15.1-1.fc25.x86_64
> > 
> > Error Summary
> > -------------
> 
> I have an idea how to fix it. But there might be other bug which would be
> hidden
> by such fix. Could you provide data from comment7?

Yes, very interesting.  Not sure how this happened:

`rpm -q sssd-common sssd-nfs-idmap libsolv hawkey dnf
sssd-common-1.15.1-1.fc25.x86_64
sssd-common-1.15.2-1.fc25.x86_64
package sssd-nfs-idmap is not installed
libsolv-0.6.26-3.fc25.x86_64
hawkey-0.6.4-2.fc25.x86_64
dnf-1.1.10-6.fc25.noarch

My upgrades complete after I removed sssd-nfs-idmap.  But now It looks like I have a bunch of others to figure out to get this back on the system.

Comment 21 Lukas Slebodnik 2017-04-10 07:16:02 UTC
(In reply to Jim Riggs from comment #20)
> (In reply to Lukas Slebodnik from comment #11)
> > (In reply to Jim Riggs from comment #10)
> > > Ran into this as well when trying to do an update.
> > > 
> > > I did try the dnf update
> > > 
> > > I had to remove the package sssd-nfs-idmap.  Once this was done, dnf upgrade
> > > went fine.
> > >
> > Did you call just a "dnf update" ?
> > becaue I cannot see a reason why "sssd-nfs-idmap" would be updated to
> > 1.15.2-1 and "sssd-common" would not be updated to the same version.
> > 
> > BTW after upgrade you should have sssd-common-1.15.2-1 on your system and not
> > sssd-common-1.15.1-1.
> > 
> > > But I cannot install the package sssd-nfs-idmap.
> > > 
> > > Downloading Packages:
> > > sssd-nfs-idmap-1.15.2-1.fc25.x86_64.rpm         252 kB/s |  75 kB     00:00
> > > -----------------------------------------------------------------------------
> > > ---
> > > Total                                            99 kB/s |  75 kB     00:00
> > > Running transaction check
> > > Transaction check succeeded.
> > > Running transaction test
> > > The downloaded packages were saved in cache until the next successful
> > > transaction.
> > > You can remove cached packages by executing 'dnf clean packages'.
> > > Error: Transaction check error:
> > >   file /usr/share/man/man5/sss_rpcidmapd.5.gz from install of
> > > sssd-nfs-idmap-1.15.2-1.fc25.x86_64 conflicts with file from package
> > > sssd-common-1.15.1-1.fc25.x86_64
> > > 
> > > Error Summary
> > > -------------
> > 
> > I have an idea how to fix it. But there might be other bug which would be
> > hidden
> > by such fix. Could you provide data from comment7?
> 
> Yes, very interesting.  Not sure how this happened:
> 
> `rpm -q sssd-common sssd-nfs-idmap libsolv hawkey dnf
> sssd-common-1.15.1-1.fc25.x86_64
> sssd-common-1.15.2-1.fc25.x86_64
> package sssd-nfs-idmap is not installed
> libsolv-0.6.26-3.fc25.x86_64
> hawkey-0.6.4-2.fc25.x86_64
> dnf-1.1.10-6.fc25.noarch
> 
> My upgrades complete after I removed sssd-nfs-idmap.  But now It looks like
> I have a bunch of others to figure out to get this back on the system.

you should be able check consistency of rpm database with "yum-deprecated check". "dnf check" is only in dnf-2+.

There should not be the same package twice with different version for the same architecture.

Comment 22 Fedora Update System 2017-05-01 08:13:09 UTC
sssd-1.15.2-3.fc26 has been submitted as an update to Fedora 26. https://bodhi.fedoraproject.org/updates/FEDORA-2017-8addfc0188

Comment 23 Fedora Update System 2017-05-01 08:15:14 UTC
sssd-1.15.2-3.fc25 has been submitted as an update to Fedora 25. https://bodhi.fedoraproject.org/updates/FEDORA-2017-ac43ea8522

Comment 24 Fedora Update System 2017-05-01 08:21:20 UTC
sssd-1.15.2-3.fc24 has been submitted as an update to Fedora 24. https://bodhi.fedoraproject.org/updates/FEDORA-2017-2b18f89e47

Comment 25 Fedora Update System 2017-05-02 03:30:35 UTC
sssd-1.15.2-3.fc25 has been pushed to the Fedora 25 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2017-ac43ea8522

Comment 26 Fedora Update System 2017-05-02 05:04:52 UTC
sssd-1.15.2-3.fc24 has been pushed to the Fedora 24 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2017-2b18f89e47

Comment 27 Fedora Update System 2017-05-02 06:37:16 UTC
sssd-1.15.2-3.fc26 has been pushed to the Fedora 26 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2017-8addfc0188

Comment 28 Fedora Update System 2017-05-04 13:31:55 UTC
sssd-1.15.2-3.fc26 has been pushed to the Fedora 26 stable repository. If problems still persist, please make note of it in this bug report.

Comment 29 Fedora Update System 2017-05-12 12:03:52 UTC
sssd-1.15.2-3.fc25 has been pushed to the Fedora 25 stable repository. If problems still persist, please make note of it in this bug report.

Comment 30 Fedora Update System 2017-05-12 19:23:13 UTC
sssd-1.15.2-3.fc24 has been pushed to the Fedora 24 stable repository. If problems still persist, please make note of it in this bug report.


Note You need to log in before you can comment on or make changes to this bug.