mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
disk-deactivate: show disk layout before and after running
This commit is contained in:
parent
22e6e78e06
commit
b2ea7d6258
1 changed files with 4 additions and 0 deletions
|
@ -3,4 +3,8 @@ set -efux
|
|||
# dependencies: jq util-linux lvm2 mdadm zfs
|
||||
disk=$(realpath "$1")
|
||||
|
||||
echo printing partition table before deactivation
|
||||
lsblk -a -f -o +ID-LINK >/dev/stderr
|
||||
lsblk --output-all --json | jq -r --arg disk_to_clear "$disk" -f "$(dirname "$0")/disk-deactivate.jq"
|
||||
echo printing partition table after deactivation
|
||||
lsblk -a -f -o +ID-LINK >/dev/stderr
|
||||
|
|
Loading…
Reference in a new issue