diff options
author | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2023-10-30 10:03:04 +0700 |
---|---|---|
committer | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2023-10-30 10:03:04 +0700 |
commit | e99e5a73efe8d25d0bb7d3aa973deb734f7c662e (patch) | |
tree | 300609fdb65d6c6ed904e31bd46d392b51567942 /content/posts | |
parent | 896261d7058c4f62292bf281c89bed89d9e4661f (diff) | |
download | blog-e99e5a73efe8d25d0bb7d3aa973deb734f7c662e.tar.gz |
Update: Fix wrong path
Diffstat (limited to 'content/posts')
-rw-r--r-- | content/posts/2023-10-29-setup-external-backup.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/posts/2023-10-29-setup-external-backup.md b/content/posts/2023-10-29-setup-external-backup.md index 017fee9..6f30bf1 100644 --- a/content/posts/2023-10-29-setup-external-backup.md +++ b/content/posts/2023-10-29-setup-external-backup.md @@ -267,7 +267,7 @@ if [[ "$previous" == "/home/$today" ]]; then else echo "Running backup" btrfs subvolume snapshot -r /home /home/$today - btrfs send -p $previous /home/$today | btrfs receive /backup/home + btrfs send -p $previous /home/$today | btrfs receive /data/backup/home btrfs subvolume delete $previous sync fi |