From bad9379224fb8debc08cef59514d6e30618cfabf Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Wed, 16 Jul 2025 20:36:22 -0600 Subject: [PATCH] Fix shellcheck --- usr/local/share/bastille/zfs.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/usr/local/share/bastille/zfs.sh b/usr/local/share/bastille/zfs.sh index d93e2837..ac6967ba 100644 --- a/usr/local/share/bastille/zfs.sh +++ b/usr/local/share/bastille/zfs.sh @@ -126,6 +126,7 @@ zfs_snapshot() { zfs_rollback() { # shellcheck disable=SC2140 zfs rollback -r "${bastille_zfs_zpool}/${bastille_zfs_prefix}/jails/${_jail}"@"${TAG}" + # shellcheck disable=SC2140 zfs rollback -r "${bastille_zfs_zpool}/${bastille_zfs_prefix}/jails/${_jail}/root"@"${TAG}" _return=$? }