Update proxmox-clone-zfs-bootroot-to-mirror.sh

This commit is contained in:
kneutron 2024-05-26 14:48:53 -06:00 committed by GitHub
parent 036f48b354
commit 5d725ec698
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@ set -u # abort on undefined var
set -e # abort on error
[ $(which sgdisk |wc -l) -eq 0 ] && apt-get install -y gdisk
[ $(which wipefs |wc -l) -eq 0 ] && apt-get install -y util-linus
[ $(which wipefs |wc -l) -eq 0 ] && apt-get install -y util-linux
[ $(which parted |wc -l) -eq 0 ] && apt-get install -y parted # included in case partition end needs to be manually moved + makes new gptlabel
# REF: https://sirlagz.net/2023/07/03/updated-live-resize-lvm-on-linux/