about summary refs log tree commit diff
path: root/content
diff options
context:
space:
mode:
authorNgô Ngọc Đức Huy <huyngo@disroot.org>2023-10-30 10:03:04 +0700
committerNgô Ngọc Đức Huy <huyngo@disroot.org>2023-10-30 10:03:04 +0700
commite99e5a73efe8d25d0bb7d3aa973deb734f7c662e (patch)
tree300609fdb65d6c6ed904e31bd46d392b51567942 /content
parent896261d7058c4f62292bf281c89bed89d9e4661f (diff)
downloadblog-e99e5a73efe8d25d0bb7d3aa973deb734f7c662e.tar.gz
Update: Fix wrong path
Diffstat (limited to 'content')
-rw-r--r--content/posts/2023-10-29-setup-external-backup.md2
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