]> git.proxmox.com Git - pve-installer.git/commitdiff
proxinstall: only display option maxroot for product pve
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 22 Dec 2017 06:41:23 +0000 (07:41 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 22 Dec 2017 06:41:23 +0000 (07:41 +0100)
proxinstall

index 6e6b44ce7127ac27f2cec44b413b3aea753406f5..111fe33447d630f0ec3c796e082f9a075215d31e 100755 (executable)
@@ -2688,10 +2688,12 @@ sub create_hdoption_view {
     push @$hdsize_labeled_widgets, "swapsize", $entry_swapsize;
 
     my $entry_maxroot = Gtk3::Entry->new();
-    $entry_maxroot->set_tooltip_text("maximum size (GB) for LVM root volume");
-    $entry_maxroot->signal_connect (key_press_event => \&check_float);
-    $entry_maxroot->set_text($config_options->{maxroot}) if $config_options->{maxroot};
-    push @$hdsize_labeled_widgets, "maxroot", $entry_maxroot;
+    if ($setup->{product} eq 'pve') {
+       $entry_maxroot->set_tooltip_text("maximum size (GB) for LVM root volume");
+       $entry_maxroot->signal_connect (key_press_event => \&check_float);
+       $entry_maxroot->set_text($config_options->{maxroot}) if $config_options->{maxroot};
+       push @$hdsize_labeled_widgets, "maxroot", $entry_maxroot;
+    }
 
     my $entry_minfree = Gtk3::Entry->new();
     $entry_minfree->set_tooltip_text("minimum free LVM space (GB, required for LVM snapshots)");