confz

git mirror of https://ccx.te2000.cz/bzr/confz
git clone https://ccx.te2000.cz/git/confz
Log | Files | Refs

commit abaa734d28547b3aea25e32bc35e412754626b22
parent af115ba730ce1a5eb370745e08341f04960edc74
Author: Jan Pobrislo <ccx@webprojekty.cz>
Date:   Thu,  1 Feb 2018 18:19:16 +0100

fix the mdadm check
Diffstat:
Mzsh-functions/confz_fs_init | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zsh-functions/confz_fs_init b/zsh-functions/confz_fs_init @@ -406,7 +406,7 @@ confz_mdraid_check() { all_empty=1 for device in $devices; do # all devices either need to have empty labels or be linux_raid_member - if ! fs_check_type $device linux_raid_member; then + if fs_check_type $device linux_raid_member; then all_empty=0 fi done