Bug 64288
| Summary: | Cannot entitle registered systems | ||
|---|---|---|---|
| Product: | Red Hat Satellite 5 | Reporter: | Matt Jamison <jamisonm> |
| Component: | Server | Assignee: | Chip Turner <cturner> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fanny Augustin <fmoquete> |
| Severity: | high | Docs Contact: | |
| Priority: | medium | ||
| Version: | unspecified | CC: | alikins, gafton, gdk, jturner, mihai.ibanescu, pjones, taw |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2002-05-01 21:22:13 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Josef Komenda
2002-05-01 19:02:30 UTC
To be more specific: the entitlement option for Workgroup itself does not appear
in the pulldown -- although 100 available workgroup entitlements are listed.
The offending code:
if ($pxt->user->org->has_entitlement('sw_mgr_enterprise')) {
push @options,
([ 'None', 'none', $ent eq 'none' ? 1 : 0 ],
[ 'Basic', 'sw_mgr_entitled', $ent eq 'sw_mgr_entitled' ? 1 : 0 ],
[ 'Workgroup', 'enterprise_entitled', $ent eq 'enterprise_entitled' ? 1
: 0 ]);
}
else {
push @options,
([ 'None', 'none', $ent eq 'none' ? 1 : 0 ],
[ 'Basic', 'sw_mgr_entitled', $ent eq 'sw_mgr_entitled' ? 1 : 0 ]);
}
...so it would appear that the entitlement certificate, although it populates
the count of workgroup systems properly, does not set the 'sw_mgr_enterprise'
flag properly -- whatever that flag is.
the problem was validate-sat-cert.pl didn't set this flag. It should now. the data for rhnsat is fixed, and a new satellite-utils package has been uploaded. Fixed - closing. |