mirror of
https://codeberg.org/hyperreal/bin
synced 2024-11-01 08:33:06 +01:00
39 lines
1.3 KiB
Bash
Executable File
39 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SNAP_DATE=$(date '+%Y-%m-%d_%H-%M-%S')
|
|
|
|
# Check if device is mounted
|
|
if ! grep "/mnt/storage" /etc/mtab >/dev/null; then
|
|
logger -p error -t btrfs_backup "ERROR: /mnt/storage is not mounted."
|
|
exit 1
|
|
fi
|
|
|
|
create_snapshot() {
|
|
if ! btrfs subvolume snapshot -r "$1" "${1}/.snapshots/$2-$SNAP_DATE" >/dev/null; then
|
|
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Error creating snapshot of $1" | tee -a "$LOGFILE"
|
|
notify-send -i computer-fail "Error creating snapshot of $1"
|
|
exit 1
|
|
else
|
|
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Create snapshot of $1: OK" | tee -a "$LOGFILE"
|
|
fi
|
|
}
|
|
|
|
send_snapshot() {
|
|
mkdir -p "/srv/backup/$SNAP_DATE"
|
|
if ! btrfs send -q "${1}/.snapshots/$2-$SNAP_DATE" | btrfs receive -q "/srv/backup/$SNAP_DATE"; then
|
|
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Error sending snapshot of $1 to /srv/backup" | tee -a "$LOGFILE"
|
|
notify-send -i computer-fail "Error sending snapshot of $1 to /srv/backup"
|
|
exit 1
|
|
else
|
|
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Send snapshot of $1 to /srv/backup: OK" | tee -a "$LOGFILE"
|
|
fi
|
|
}
|
|
|
|
# Create root and home snapshots
|
|
create_snapshot "/" "root"
|
|
create_snapshot "/home" "home"
|
|
|
|
# Send root and home snapshots
|
|
send_snapshot "/" "root"
|
|
send_snapshot "/home" "home"
|