remove snaplink

This commit is contained in:
2023-01-11 05:39:17 +02:00
parent 930949b4ac
commit bf22b73244
3 changed files with 0 additions and 14 deletions

View File

@@ -1,10 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
_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"