mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
disk-deactivate: also clear zpool labels
this helps to avoid ghost pools.
This commit is contained in:
parent
c789d113c6
commit
736c8150b9
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
# since lsblk lacks zfs support, we have to do it this way
|
# since lsblk lacks zfs support, we have to do it this way
|
||||||
def remove:
|
def remove:
|
||||||
if .fstype == "zfs_member" then
|
if .fstype == "zfs_member" then
|
||||||
"if type zpool >/dev/null; then zpool destroy -f \(.label); fi"
|
"if type zpool >/dev/null; then zpool destroy -f \(.label); zpool labelclear -f \(.label); fi"
|
||||||
elif .fstype == "LVM2_member" then
|
elif .fstype == "LVM2_member" then
|
||||||
[
|
[
|
||||||
"vg=$(pvs \(.path) --noheadings --options vg_name | grep -o '[a-zA-Z0-9-]*')",
|
"vg=$(pvs \(.path) --noheadings --options vg_name | grep -o '[a-zA-Z0-9-]*')",
|
||||||
|
@ -14,8 +14,8 @@ def remove:
|
||||||
# maybe its zfs
|
# maybe its zfs
|
||||||
[
|
[
|
||||||
# the next line has some horrible escaping
|
# the next line has some horrible escaping
|
||||||
"zpool=$(if type zdb >/dev/null; then zdb -l \(.path) | sed -nr $'s/ +name: \\'(.*)\\'/\\\\1/p') else echo ""; fi",
|
"zpool=$(if type zdb >/dev/null; then zdb -l \(.path) | sed -nr $'s/ +name: \\'(.*)\\'/\\\\1/p'; fi)",
|
||||||
"if [[ -n \"${zpool}\" ]]; then zpool destroy -f \"$zpool\"; fi",
|
"if [[ -n \"${zpool}\" ]]; then zpool destroy -f \"$zpool\"; zpool labelclear -f \"$zpool\"; fi",
|
||||||
"unset zpool"
|
"unset zpool"
|
||||||
]
|
]
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue