From 682c302fe62e8ce2f7caac92b2ea6a7a7419ae22 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 2 Nov 2013 10:46:17 +0100 Subject: [PATCH] 00-zfs.sh: fix USE_ZFS variable check typo --- defaults/initrd.d/00-zfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/initrd.d/00-zfs.sh b/defaults/initrd.d/00-zfs.sh index 7c9acc4..2509724 100755 --- a/defaults/initrd.d/00-zfs.sh +++ b/defaults/initrd.d/00-zfs.sh @@ -30,7 +30,7 @@ zfs_real_root_init() { esac # Verify that zfs support has been compiled in - if [ "USE_ZFS" = "1" ]; then + if [ "${USE_ZFS}" = "1" ]; then for i in /sbin/zfs /sbin/zpool; do if [ ! -x "${i}" ]; then USE_ZFS=0