Bug 58182
| Summary: | kickstart fails when partitions are specified with cylinders | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Subhendu Ghosh <sghosh> |
| Component: | anaconda | Assignee: | Jeremy Katz <katzj> |
| Status: | CLOSED DUPLICATE | QA Contact: | Brock Organ <borgan> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 7.2 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i686 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2002-01-15 20:52:35 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
Subhendu Ghosh
2002-01-10 17:44:16 UTC
The error seems to be comming from the following in partitioning.py
It looks like partitioning specified with cylinders does not calculate the space
realized hence the routine fails on all checks.
(line 562 in J. Katz's modified partioning.py as posted on the web. same
section exists in the cdrom rpm.)
# this function is called at the end of partitioning so that we
# can make sure you don't have anything silly (like no /, a really small /,
# etc). returns (errors, warnings) where each is a list of strings or None
# if there are none
# if baseChecks is set, the basic sanity tests which the UI runs prior to
# accepting a partition will be run on the requests
def sanityCheckAllRequests(requests, diskset, baseChecks = 0):
checkSizes = [('/usr', 250), ('/tmp', 50), ('/var', 50),
('/home', 100), ('/boot', 20)]
warnings = []
errors = []
|