commit af115ba730ce1a5eb370745e08341f04960edc74
parent 117c71cafcb5df20e58683658fcbbd6875b733d5
Author: Jan Pobrislo <ccx@webprojekty.cz>
Date: Thu, 1 Feb 2018 13:17:12 +0100
fix syntax
Diffstat:
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
+ if ! fs_check_type $device linux_raid_member; then
all_empty=0
fi
done