From c3d828e1e37b217f3b2a2edd8960c9ffbb2aa45e Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:41:58 -0400 Subject: [PATCH] Fix typo'd name --- templates/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/install.sh b/templates/install.sh index dfd030d..1160771 100755 --- a/templates/install.sh +++ b/templates/install.sh @@ -632,7 +632,7 @@ done echo "done." echo -n "Removing existing LVM physical volumes... " -for pv in $( pvcscan | grep "${target_disk}" | awk '{ print $2 }' ); do +for pv in $( pvscan | grep "${target_disk}" | awk '{ print $2 }' ); do yes | pvremove -f ${pv} || true done echo "done."