mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
Don't print an error if there's no raid
Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
This commit is contained in:
parent
acd2cbdb31
commit
12d0c39ed3
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ def deactivate:
|
|||
if .type == "disk" then
|
||||
[
|
||||
# If this disk is a member of raid, stop that raid
|
||||
"mdadm --stop $(lsblk \(.path) -l -p -o type,name | awk 'match($1,\"raid.*\") {print $2}')",
|
||||
"lsblk \(.path) -l -p -o type,name | awk 'match($1,\"raid.*\") {print $2}' | xargs -r mdadm --stop",
|
||||
# Remove all file-systems and other magic strings
|
||||
"wipefs --all -f \(.path)",
|
||||
# Remove the MBR bootstrap code
|
||||
|
|
Loading…
Reference in a new issue