From ac84d5ba0ab96a1d61562475d0f4591cffb3c46e Mon Sep 17 00:00:00 2001 From: digimer Date: Thu, 31 Aug 2023 11:52:24 -0400 Subject: [PATCH] Removed Storage->auto_grow_pv from anvil-version-changes. Signed-off-by: digimer --- tools/anvil-configure-host | 5 +---- tools/anvil-version-changes | 6 ------ 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/tools/anvil-configure-host b/tools/anvil-configure-host index 48f2add2..231341ac 100755 --- a/tools/anvil-configure-host +++ b/tools/anvil-configure-host @@ -64,10 +64,7 @@ pickup_job_details($anvil); overwrite_variables_with_switches($anvil); # Set maintenance mode -$anvil->System->maintenance_mode({set => 1, debug => 2}); - -# Check to see if there's a PV to grow. -$anvil->Storage->auto_grow_pv({debug => 2}); +$anvil->System->maintenance_mode({set => 1}); # Reconfigure the network. reconfigure_network($anvil); diff --git a/tools/anvil-version-changes b/tools/anvil-version-changes index 6dec57fb..c49176e9 100755 --- a/tools/anvil-version-changes +++ b/tools/anvil-version-changes @@ -116,9 +116,6 @@ sub node_checks # Make sure logind is update to handle fencing properly # see - https://access.redhat.com/solutions/1578823 $anvil->Cluster->configure_logind({debug => 2}); - - # Look for unused free space - $anvil->Storage->auto_grow_pv({debug => 2}); return(0); } @@ -131,9 +128,6 @@ sub dr_checks # RHBZ #1961562 - https://bugzilla.redhat.com/show_bug.cgi?id=1961562#c16 handle_bz1961562($anvil); - # Look for unused free space - $anvil->Storage->auto_grow_pv({debug => 2}); - # Make sure DRBD compiled after a kernel upgrade. $anvil->DRBD->_initialize_kmod({debug => 2});