Fix typo'd name

This commit is contained in:
Joshua Boniface 2021-12-13 16:57:41 -05:00
parent 226ef3a039
commit c001769d1b
1 changed files with 1 additions and 1 deletions

View File

@ -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."