Merge pull request #1362 from Brouware/main

Fixed typo's readme.md
This commit is contained in:
Simon L 2022-11-09 23:12:16 +01:00 committed by GitHub
commit bd80fd1915
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -290,7 +290,7 @@ sudo borg list "/mnt/backup/borg"
sudo borg delete --stats --progress "/mnt/backup/borg::20220223_174237-nextcloud-aio" sudo borg delete --stats --progress "/mnt/backup/borg::20220223_174237-nextcloud-aio"
# If borg 1.2.0 or higher is installed, you then need to run borg compact in order to clean up the freed space # If borg 1.2.0 or higher is installed, you then need to run borg compact in order to clean up the freed space
sudo borg version sudo borg --version
# If version number of the command above is higher than 1.2.0 you need to run the command below: # If version number of the command above is higher than 1.2.0 you need to run the command below:
sudo borg compact "/mnt/backup/" sudo borg compact "/mnt/backup/"
@ -341,7 +341,7 @@ if ! [ -d "$DRIVE_MOUNTPOINT" ]; then
exit 1 exit 1
fi fi
if ! grep -q " $DRIVE_MOUNTPOINT " /etc/fstab; then if ! grep -q "$DRIVE_MOUNTPOINT" /etc/fstab; then
echo "Could not find the drive mountpoint in the fstab file. Did you add it there?" echo "Could not find the drive mountpoint in the fstab file. Did you add it there?"
exit 1 exit 1
fi fi