| Summary: | Candlepin should ensure all content override names are lowercase | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Red Hat Satellite | Reporter: | Michael Stead <mstead> | ||||
| Component: | Subscription Management | Assignee: | Michael Stead <mstead> | ||||
| Status: | CLOSED UPSTREAM | QA Contact: | Katello QA List <katello-qa-list> | ||||
| Severity: | medium | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | Nightly | CC: | cwelton, jsefler, redakkan | ||||
| Target Milestone: | Unspecified | Keywords: | Triaged | ||||
| Target Release: | Unused | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2014-07-17 18:33:21 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Attachments: |
|
||||||
|
Description
Michael Stead
2013-11-25 17:11:55 UTC
Since this issue was entered in Red Hat Bugzilla, the release flag has been set to ? to ensure that it is properly evaluated for this release. There is an error in the attached test data JSON file. The 'contentLabel' of both entries should be the same.
Here is a corrected version:
[
{
"contentLabel" : "my-repo",
"name" : "gpgcheck",
"value" : "1"
},
{
"contentLabel" : "my-repo",
"name" : "GPGCheck",
"value" : "0"
}
]
Expected results will remain the same as in the description.
Follow these steps to test with subscription-manager: Reproduced -------------- [mstead@highside candlepin]$ sudo subscription-manager identity system identity: 41fda330-47f8-42b1-92f8-a8d7c7c6d9e6 name: highside org name: Admin Owner org ID: admin [mstead@highside candlepin]$ sudo subscription-manager repo-override --repo test --add gpgcheck:0 Repository 'test' does not currently exist, but the override has been added. [mstead@highside candlepin]$ sudo subscription-manager repo-override --repo test --add GPGCheck:1 Repository 'test' does not currently exist, but the override has been added. [mstead@highside candlepin]$ sudo subscription-manager repo-override --list Repository: test GPGCheck: 1 gpgcheck: 0 Expected ---------- [mstead@highside candlepin]$ sudo subscription-manager identity system identity: 41fda330-47f8-42b1-92f8-a8d7c7c6d9e6 name: highside org name: Admin Owner org ID: admin [mstead@highside candlepin]$ sudo subscription-manager repo-override --repo test --add gpgcheck:0 Repository 'test' does not currently exist, but the override has been added. [mstead@highside candlepin]$ sudo subscription-manager repo-override --repo test --add GPGCheck:1 Repository 'test' does not currently exist, but the override has been added. [mstead@highside candlepin]$ sudo subscription-manager repo-override --list Repository: test gpgcheck: 1 Closing upstream - devtask |