Update proxmox-replace-zfs-mirror-boot-disks-with-bigger.sh

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

View File

@ -18,7 +18,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/