Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
DescriptionChristian Heimes
2018-11-28 12:17:55 UTC
Description of problem:
IPA calls authselect with wrong arguments. Depending on the state, it may either call authselect with '' as feature or with all features in one argument. Examples:
Wrong: ['authselect', 'sssd', '', '--force']
Correct: ['authselect', 'sssd', '--force']
Wrong: ['authselect', 'sssd', 'with-fingerprint with-silent-lastlog', '--force']
Correct: ['authselect', 'sssd', 'with-fingerprint', 'with-silent-lastlog', '--force']
Version-Release number of selected component (if applicable):
ipa-server-4.7.1-5
How reproducible:
always
Additional info:
The bugs were discovered when authselect 1.0.2 was released on Fedora yesterday, https://bugzilla.redhat.com/show_bug.cgi?id=1645708
# rpm -qa | grep ipa-server
ipa-server-4.7.1-7.module+el8+2555+b334d87b.x86_64
ipa-server-common-4.7.1-7.module+el8+2555+b334d87b.noarch
ipa-server-dns-4.7.1-7.module+el8+2555+b334d87b.noarch
# rpm -qa | grep authselect
authselect-1.0-9.el8.x86_64
authselect-libs-1.0-9.el8.x86_64
Observation : No more authselect error during IPA uninstallation.
# ipa-server-install --uninstall
If this server is the last instance of CA,
KRA, or DNSSEC master, uninstallation may result in data loss.
Are you sure you want to continue with the uninstall procedure? [no]: yes
Shutting down all IPA services
Removing IPA client configuration
Removing Kerberos service principals from /etc/krb5.keytab
Disabling client Kerberos and LDAP configurations
Redundant SSSD configuration file /etc/sssd/sssd.conf was moved to /etc/sssd/sssd.conf.deleted
Restoring client configuration files
Unconfiguring the NIS domain.
nscd daemon is not installed, skip configuration
nslcd daemon is not installed, skip configuration
Systemwide CA database updated.
Client uninstall complete.
The ipa-client-install command was successful
The ipa-server-install command was successful
Based on the above observation, marking the bug VERIFIED.