Bug 1210465
| Summary: | instack-build-images fails when building CentOS7 due to EPEL version change | ||
|---|---|---|---|
| Product: | [Community] RDO | Reporter: | matt |
| Component: | distribution | Assignee: | Ben Nemec <bnemec> |
| Status: | CLOSED EOL | QA Contact: | Shai Revivo <srevivo> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | Juno | CC: | srevivo |
| Target Milestone: | --- | ||
| Target Release: | Kilo | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-05-19 15:40:19 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: | |
| Embargoed: | |||
|
Description
matt
2015-04-09 19:26:06 UTC
Add the upstream fix as is, replacing the packaged file, fails because wget is not in the target image. Replacing line 30: `PKG_NAME=$(wget -q $URL -O - | grep -oE "(href=\"epel-release-$RELEASE-[0-9,.].*)" | cut -d'"' -f2)` with: `PKG_NAME=$(curl -L $URL | grep -oE "(href=\"epel-release-$RELEASE-[0-9,.].*)" | cut -d'"' -f2)` allow the install to continue on my system (an fc20 x86_64 base OS, building CentOS 7 images). This bug is against a Version which has reached End of Life. If it's still present in supported release (http://releases.openstack.org), please update Version and reopen. |