diff --git a/zzz_evobackup b/zzz_evobackup index 28d4e40..1faaf36 100755 --- a/zzz_evobackup +++ b/zzz_evobackup @@ -267,10 +267,10 @@ if [ "${LOCAL_TASKS}" = "1" ]; then apt-cache dumpavail > ${LOCAL_BACKUP_DIR}/packages.available ## Dump MBR / table partitions - disks=$(lsblk -l | grep disk | grep -v drbd | awk '{print $1}') + disks=$(lsblk -l | grep disk | grep -v -E '(drbd|fd[0-9]+)' | awk '{print $1}') for disk in ${disks}; do dd if="/dev/${disk}" of="${LOCAL_BACKUP_DIR}/MBR-${disk}" bs=512 count=1 2>&1 | grep -Ev "(records in|records out|512 bytes)" - fdisk -l "/dev/${disk}" > "${LOCAL_BACKUP_DIR}/partitions-${disk}" + fdisk -l "/dev/${disk}" > "${LOCAL_BACKUP_DIR}/partitions-${disk}" 2>&1 done cat ${LOCAL_BACKUP_DIR}/partitions-* > ${LOCAL_BACKUP_DIR}/partitions