Skip to content

Commit

Permalink
Merge pull request #65 from drauger-os-development/dev
Browse files Browse the repository at this point in the history
make sure root partition is big enough
  • Loading branch information
Batcastle authored Jan 24, 2022
2 parents 105e09b + ec5486b commit 91e2588
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: system-installer
Version: 2.2.5
Version: 2.2.6
Maintainer: Thomas Castleman <[email protected]>
Homepage: https://github.com/drauger-os-development/system-installer
Section: admin
Expand Down
2 changes: 1 addition & 1 deletion usr/bin/system-installer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

using namespace std;

str VERSION = "2.2.5";
str VERSION = "2.2.6";
str R = "\033[0;31m";
str G = "\033[0;32m";
str Y = "\033[1;33m";
Expand Down
2 changes: 1 addition & 1 deletion usr/share/system-installer/auto_partitioner.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ def partition(root, efi, home, raid_array):
# it's elsewhere. We're good.
if efi:
part1 = __make_efi__(device)
part2 = __make_root__(device)
part2 = __make_root__(device, end="100%")
else:
part1 = __make_root__(device, start="0%", end="100%")
__make_root_boot__(device)
Expand Down

0 comments on commit 91e2588

Please sign in to comment.