You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If "krb5-users" package had been removed, the end user may experience login failure intermittently behavior.
Hence, suggested a check if sssd-krb5-common had been installed, will warn if "krb5-user" package is not installed. The check will be triggered if Ubuntu 22 or older is used. The warning message does not suggest to force the package installation if no login fails intermittently issue.
if [ `lsb_release -rs | cut -f1 -d.` -le 22 ]; then
if [ `dpkg -l | grep sssd-krb5-common | wc -l` -ne 0 ]; then
if [ `dpkg -l | grep krb5-user | wc -l` -eq 0 ]; then
echo '"sssd-krb5-common" is installed but "krb5-user" package is not installed. If the login fails intermittently, please install the "krb5-user" package. Please check with "apt-cache show krb5-user | grep -e Package: -e Conflicts:"'
fi
fi
fi
Hello Maintainers,
If "krb5-users" package had been removed, the end user may experience login failure intermittently behavior.
Hence, suggested a check if sssd-krb5-common had been installed, will warn if "krb5-user" package is not installed. The check will be triggered if Ubuntu 22 or older is used. The warning message does not suggest to force the package installation if no login fails intermittently issue.
Thank you.
Best Regards,
Koo
[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810681
The text was updated successfully, but these errors were encountered: