search for: data2_size

Displaying 2 results from an estimated 2 matches for "data2_size".

2011 May 25
1
Hook script to preserve one partition untouched during install
This hook script tries to address the fact that a RHEV-H installation will format all the storage devices available in the machine in order to create HostVG and AppVG with all the available space. It may be the case that RHEV-H needs to respect and co-exist with a proposed partitioning scheme, not getting all the storage space for HostVG and AppVG volume groups. The proposed solution adds the
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
...s/ovirt-config-storage index 513a240..e3bb57b 100755 --- a/scripts/ovirt-config-storage +++ b/scripts/ovirt-config-storage @@ -30,6 +30,8 @@ default_config_size=5 default_logging_size=2048 # -1 indicates data partition should use remaining disk default_data_size=-1 +default_swap2_size=0 +default_data2_size=0 boot_min_size=50 root_min_size=256 config_min_size=5 @@ -123,6 +125,10 @@ check_partition_sizes() if [ "$DATA_SIZE" = -1 ]; then min_data_size=5 fi + local min_data2_size="$DATA2_SIZE" + if [ "$DATA_SIZE2" = -1 ]; then + min_data_si...