mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
8 lines
267 B
Bash
Executable file
8 lines
267 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -efux -o pipefail
|
|
# dependencies: bash jq util-linux lvm2 mdadm zfs gnugrep
|
|
disk=$(realpath "$1")
|
|
|
|
lsblk -a -f >&2
|
|
lsblk --output-all --json | jq -r --arg disk_to_clear "$disk" -f "$(dirname "$0")/disk-deactivate.jq" | bash -x
|
|
lsblk -a -f >&2
|