Add umountAndClean()

This commit is contained in:
Santiago Lo Coco 2022-01-12 23:21:05 -03:00
parent 80e222e3d6
commit d4f382b9a0
1 changed files with 8 additions and 0 deletions

View File

@ -598,4 +598,12 @@ runScript() {
done
}
umountAndClean() {
swapoff /mnt/swapfile
rm /mnt/swapfile
umount -R /mnt
swapoff /dev/sda2
parted -s /dev/sda mklabel gpt
}
runScript "$@"