Bug 1230997
Summary: | use new Anaconda reqpart command in kickstart snippet for custom partitioning | ||
---|---|---|---|
Product: | [Retired] Beaker | Reporter: | Dan Callaghan <dcallagh> |
Component: | general | Assignee: | Dan Callaghan <dcallagh> |
Status: | CLOSED CURRENTRELEASE | QA Contact: | Anwesha Chatterjee <achatter> |
Severity: | unspecified | Docs Contact: | |
Priority: | high | ||
Version: | 20 | CC: | achatter, dcallagh, ebaak, rjoost |
Target Milestone: | 25.0 | Keywords: | FutureFeature, Patch, Triaged |
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Enhancement | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2018-03-19 04:19:07 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
Dan Callaghan
2015-06-12 01:24:11 UTC
According to bug 1164660 the necessary Anaconda patch has been in RHEL 7.2 nightlies since August, and will be therefore be in RHEL 7.2 final as well. Therefore we should be safe to start using this in Beaker for any distros identifying themselves as RHEL7.2 or newer. Verified with the following steps: * submitted a job XML as follows: ``` <job retention_tag="scratch"> <whiteboard>test for BZ1230997</whiteboard> <recipeSet priority="Normal"> <recipe whiteboard="RHEL-7.2-20151030.0 Server ppc64 STANDALONE" role="None" ks_meta="" kernel_options="" kernel_options_post=""> <autopick random="false"/> <watchdog panic="None"/> <packages/> <ks_appends/> <repos/> <distroRequires> <and> <distro_name op="=" value="RHEL-7.2-20151030.0"/> <distro_variant op="=" value="Server"/> <distro_arch op="=" value="ppc64"/> </and> </distroRequires> <hostRequires> <system_type value="Machine"/> </hostRequires> <partitions> <partition name="lol" fs="xfs" size="100"/> </partitions> <task name="/distribution/install" role="STANDALONE"/> <task name="/distribution/beaker/Sanity/Skip-result" role="STANDALONE"/> <task name="/distribution/beaker/Sanity/reboot-tests" role="STANDALONE"/> </recipe> </recipeSet> </job> ``` * kickstart contains the following line: `reqpart --add-boot` Beaker 25.0 has been released. Release notes are available upstream: https://beaker-project.org/docs/whats-new/release-25.html |