From 571bfc23207102146228c58e675f151812fe610e Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Wed, 17 Jun 2009 11:38:35 -0400 Subject: [PATCH] udev dropped vol_id, replace with blkid udev no longer ships a vol_id binary saying that blkid should be used instead. *sigh* --- fedora-live-base.ks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedora-live-base.ks b/fedora-live-base.ks index d476c1e..2f93845 100644 --- a/fedora-live-base.ks +++ b/fedora-live-base.ks @@ -161,7 +161,7 @@ mountPersistentHome() { fi # if it's encrypted, we need to unlock it - if [ "\$(/lib/udev/vol_id -t \$homedev 2>/dev/null)" = "crypto_LUKS" ]; then + if [ "\$(/sbin/blkid -s TYPE -o value \$homedev 2>/dev/null)" = "crypto_LUKS" ]; then echo echo "Setting up encrypted /home device" plymouth ask-for-password --command="cryptsetup luksOpen \$homedev EncHome"