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:
Paul Haerle 2024-01-10 09:12:47 +00:00 committed by mergify[bot]
parent acd2cbdb31
commit 12d0c39ed3

View File

@ -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