diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-04 19:21:05 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-04 19:21:05 -0300 |
commit | 3a44cc2d21056af5ec94413a34e54a312a04c7cb (patch) | |
tree | 1bacd121df6a06ef2e0644cb0eea3b5ce9d7f8d7 /share | |
parent | 786ff87aba046db856e614279af8afdea079f032 (diff) | |
download | hydra-3a44cc2d21056af5ec94413a34e54a312a04c7cb.tar.gz hydra-3a44cc2d21056af5ec94413a34e54a312a04c7cb.tar.bz2 |
Fix: hydractl: provision: increase default partition sizes from 20G to 40G
Diffstat (limited to 'share')
-rwxr-xr-x | share/hydractl/provision | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/hydractl/provision b/share/hydractl/provision index 352e783..7d224e3 100755 --- a/share/hydractl/provision +++ b/share/hydractl/provision @@ -118,16 +118,16 @@ function hydra_provision_config { hydra_user_config interactive y "Interactive mode? (y/n)" hydra_user_config device /dev/sdb "Physical device(s) (more than one auto sets RAID mode)" hydra_user_config swap_size 2000 "Swap size (in MB, 0 to not create it)" - hydra_user_config root_size 20G "Size of root partition (-1 for all free space)" + hydra_user_config root_size 40G "Size of root partition (-1 for all free space)" if [ "$root_size" != "-1" ]; then - hydra_user_config home_size 20G "Size of home partition (0 to not create it, -1 for all free space)" + hydra_user_config home_size 40G "Size of home partition (0 to not create it, -1 for all free space)" else home_size="0" fi if [ "$root_size" != "-1" ] && [ "$home_size" != "-1" ]; then - hydra_user_config var_size 20G "Size of var partition (0 to not create it, -1 for all free space)" + hydra_user_config var_size 40G "Size of var partition (0 to not create it, -1 for all free space)" else var_size="0" fi |