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.
Bug 1482802 - Unable to set ca renewal master on replica
Summary: Unable to set ca renewal master on replica
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: ipa
Version: 7.4
Hardware: Unspecified
OS: Unspecified
high
high
Target Milestone: rc
: ---
Assignee: IPA Maintainers
QA Contact: Michal Reznik
URL:
Whiteboard:
Depends On:
Blocks: 1489299 1489300
TreeView+ depends on / blocked
 
Reported: 2017-08-18 06:40 UTC by Abhijeet Kasurde
Modified: 2018-04-10 16:45 UTC (History)
8 users (show)

Fixed In Version: ipa-4.5.0-21.el7.2
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
: 1489299 1489300 (view as bug list)
Environment:
Last Closed: 2018-04-10 16:43:55 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)
verification_steps (2.58 KB, text/plain)
2017-12-08 09:16 UTC, Michal Reznik
no flags Details


Links
System ID Private Priority Status Summary Last Updated
Fedora Pagure freeipa issue 7321 0 None None None 2018-02-06 16:33:09 UTC
Red Hat Product Errata RHBA-2018:0918 0 None None None 2018-04-10 16:45:26 UTC

Description Abhijeet Kasurde 2017-08-18 06:40:16 UTC
Description of problem:
User is unable to set CA renewal master using `ipa config-mod --ca-renewal-master-server` 

# ipa config-mod --ca-renewal-master-server `hostname`
ipa: ERROR: invalid 'ca_renewal_master_server': must be enabled only on a single master

Whereas, following command works fine 

# ipa config-show | grep renewal
  IPA CA renewal master: master1.testrelm.test
# ipa-csreplica-manage set-renewal-master
Directory Manager password:

replica1.testrelm.test is now the renewal master
# ipa config-show | grep renewal
  IPA CA renewal master: replica1.testrelm.test

Version-Release number of selected component (if applicable):
ipa-server-4.5.0-21.el7_4.1.x86_64

How reproducible:
100%

Steps to Reproduce:
1. Install IPA Master and Replica
2. Install CA on Replica
3. ipa config-mod --ca-renewal-master-server `hostname` on replica

Actual results:
config-mod Command fails to set ca renewal master server, but csreplica-manage command successfully sets ca renewal master.

Expected results:
Both command should set ca renewal master server.

Additional info:
Documentation here - https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Linux_Domain_Identity_Authentication_and_Policy_Guide/moving-crl-gen-old.html 
should discuss `config-mod` command as well.

Comment 2 Florence Blanc-Renaud 2017-08-21 08:40:56 UTC
In ipaserver/servroles.py, l 421:

class SingleValuedServerAttribute(ServerAttribute):
    """
    Base class for server attributes that are forced to be single valued

    this means that `get` method will return a one-element list, and `set`
    method will accept only one-element list
    """

    def set(self, api_instance, masters):
        if len(masters) > 1:
            raise errors.ValidationError(
                name=self.attr_name,
                error=_("must be enabled only on a single master"))


The issue is that the set() method is called with masters = a unicode, and len(masters) returns the length of the string, not the number of elements in a list.

Comment 3 Florence Blanc-Renaud 2017-08-21 08:46:48 UTC
Probably a regression introduced with commit bddb90f38a3505a2768862d2f814c5e749a7dcde
Allow for multivalued server attributes

Comment 6 Petr Vobornik 2017-08-24 09:50:24 UTC
Upstream ticket:
https://pagure.io/freeipa/issue/7120

Comment 12 Michal Reznik 2017-12-08 09:16:22 UTC
Verified on ipa-server-4.5.4-6.el7.x86_64

Comment 13 Michal Reznik 2017-12-08 09:16:54 UTC
Created attachment 1364705 [details]
verification_steps

Comment 16 errata-xmlrpc 2018-04-10 16:43:55 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHBA-2018:0918


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