Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change some value to fix installer failing for some people (free space error with extents stuff) #421

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vanilla_installer/utils/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def setup_partition(
# - 512 MiB from the init LV
# - 1024 MiB from the metadata LV
# - 1028 MiB from LVM's internals (4 MiB header and 1024 MiB for thin)
thin_size = (values["size"] / 1_048_576) - 1024 - 512 - 1028
thin_size = (values["size"] / 1_048_576) - 1024 - 512 - 1068
setup_steps.append(
[part_disk, "lvcreate", ["root-meta", "vos-root", "linear", 1024]]
)
Expand Down