| Summary: | The Pulp RPM agent installs RPMs by name, ignoring epoch, version, release, and architecture | |||
|---|---|---|---|---|
| Product: | [Retired] Pulp | Reporter: | Randy Barlow <rbarlow> | |
| Component: | consumers | Assignee: | Barnaby Court <bcourt> | |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Preethi Thomas <pthomas> | |
| Severity: | high | Docs Contact: | ||
| Priority: | high | |||
| Version: | Master | CC: | bcourt, mhrivnak | |
| Target Milestone: | --- | Keywords: | Triaged | |
| Target Release: | 2.4.0 | |||
| Hardware: | All | |||
| OS: | All | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | Bug Fix | ||
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1104742 (view as bug list) | Environment: | ||
| Last Closed: | 2014-08-09 06:55:15 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: | ||
| Bug Depends On: | ||||
| Bug Blocks: | 1004986, 1104742 | |||
|
Description
Randy Barlow
2013-09-05 23:04:15 UTC
build: 2.4.0-0.7.beta verified
[root@hp-dl380pgen8-01 ~]# rpm -qa pulp-server
pulp-server-2.4.0-0.19.beta.fc20.noarch
[root@hp-dl380pgen8-01 ~]#
The options are available in API
In [24]: pic.POST('/v2/consumers/kitkat/actions/content/install/',body={'units':[{'unit_key':{'name':'whale','version':'0.2'},'type_id':'rpm'}], 'options':{} })
Request Body
{
"units": [
{
"unit_key": {
"version": "0.2",
"name": "whale"
},
"type_id": "rpm"
}
],
"options": {}
}
Response Body
{
"spawned_tasks": [
{
"_href": "/pulp/api/v2/tasks/0357aa3b-e4cf-4dba-ac04-48ed3ebf114c/",
"task_id": "0357aa3b-e4cf-4dba-ac04-48ed3ebf114c"
}
],
"result": null,
"error": null
}
Out[24]:
(202,
{u'error': None,
u'result': None,
u'spawned_tasks': [{u'_href': u'/pulp/api/v2/tasks/0357aa3b-e4cf-4dba-ac04-48ed3ebf114c/',
u'task_id': u'0357aa3b-e4cf-4dba-ac04-48ed3ebf114c'}]})
In [25]:
In [17]: pic.POST('/v2/consumers/kitkat/actions/content/install/',body={'units':[{'unit_key':{'name':'zebra','epoch':'0'},'type_id':'rpm'}], 'options':{} })
Request Body
{
"units": [
{
"unit_key": {
"epoch": "0",
"name": "zebra"
},
"type_id": "rpm"
}
],
"options": {}
}
Response Body
{
"spawned_tasks": [
{
"_href": "/pulp/api/v2/tasks/c2f3081e-89fb-4ca6-8ce1-cfc67834cbbc/",
"task_id": "c2f3081e-89fb-4ca6-8ce1-cfc67834cbbc"
}
],
"result": null,
"error": null
}
Out[17]:
(202,
{u'error': None,
u'result': None,
u'spawned_tasks': [{u'_href': u'/pulp/api/v2/tasks/c2f3081e-89fb-4ca6-8ce1-cfc67834cbbc/',
u'task_id': u'c2f3081e-89fb-4ca6-8ce1-cfc67834cbbc'}]})
This has been fixed in Pulp 2.4.0-1. |