Fix typo'd name

This commit is contained in:
Joshua Boniface 2023-09-01 15:41:58 -04:00
parent fb058906a8
commit c3d828e1e3
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ done
echo "done." echo "done."
echo -n "Removing existing LVM physical volumes... " 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 yes | pvremove -f ${pv} || true
done done
echo "done." echo "done."