test: sort the features alphabetically

This commit is contained in:
Frantisek Sumsal 2021-09-21 20:56:24 +02:00
parent 41a978fdb1
commit 5f25c30ee8

View file

@ -28,14 +28,14 @@ _host_has_feature() {(
set -e
case "${1:?}" in
multipath)
command -v multipath && command -v multipathd || return $?
btrfs)
modprobe -nv btrfs && command -v mkfs.btrfs && command -v btrfs || return $?
;;
lvm)
command -v lvm || return $?
;;
btrfs)
modprobe -nv btrfs && command -v mkfs.btrfs && command -v btrfs || return $?
multipath)
command -v multipath && command -v multipathd || return $?
;;
*)
echo >&2 "ERROR: Unknown feature '$1'"