Revert "sanoid: replace paths with mountpoints"

This reverts commit 32f7869460.
This commit is contained in:
2023-01-05 14:59:24 +02:00
parent 0d59d3ae81
commit 604a83cdee
2 changed files with 8 additions and 8 deletions

View File

@@ -1,10 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
snap_path="$SANOID_TARGET/.zfs/snapshot/$SANOID_SNAPNAME"
[[ -d "$snap_path" ]] || {
>&2 echo "expected to find a directory in $snap_path"
exit 1
}
link_path="$SANOID_TARGET/.snapshot-latest"
_fatal() { >&2 echo "ERROR: $*"; exit 1; }
mountpoint=$(zfs list -H -t filesystem -o mountpoint "$SANOID_TARGET")
[[ -n "$mountpoint" ]] || _fatal "expected non-empty $SANOID_TARGET"
snap_path="$mountpoint/.zfs/snapshot/$SANOID_SNAPNAME"
[[ -d "$snap_path" ]] || _fatal "expected to find a directory in $snap_path"
link_path="$mountpoint/.snapshot-latest"
ln -sf "$snap_path" "$link_path"
>&2 printf "successfully created %s -> %s\n" "$link_path" "$snap_path"