More lsblk logging tweaking 🐒

This commit is contained in:
Dmitri Popov
2017-10-01 13:49:02 +02:00
committed by GitHub
parent 54d2f39323
commit c965e0ea00

View File

@@ -10,9 +10,6 @@ STORAGE_MOUNT_POINT="/media/storage"
CARD_DEV="sdb1" CARD_DEV="sdb1"
CARD_MOUNT_POINT="/media/card" CARD_MOUNT_POINT="/media/card"
# Log the output of the lsblk command for troubleshooting
sudo lsblk > "$HOME/lsblk.log"
# Set the ACT LED to heartbeat # Set the ACT LED to heartbeat
sudo sh -c "echo heartbeat > /sys/class/leds/led0/trigger" sudo sh -c "echo heartbeat > /sys/class/leds/led0/trigger"
@@ -60,6 +57,9 @@ if [ ! -z $CARD_READER ]; then
< /dev/urandom tr -cd 0-9 | head -c 8 > $CARD_MOUNT_POINT/CARD_ID < /dev/urandom tr -cd 0-9 | head -c 8 > $CARD_MOUNT_POINT/CARD_ID
fi fi
# Log the output of the lsblk command for troubleshooting
sudo lsblk > "/home/pi/lsblk.log"
# Read the 8-digit identifier number from the CARD_ID file on the card # Read the 8-digit identifier number from the CARD_ID file on the card
# and use it as a directory name in the backup path # and use it as a directory name in the backup path
read -r ID < $CARD_MOUNT_POINT/CARD_ID read -r ID < $CARD_MOUNT_POINT/CARD_ID