17 lines
651 B
Plaintext
17 lines
651 B
Plaintext
$NetBSD: patch-af,v 1.1.1.1 2008/11/22 15:20:51 jmcneill Exp $
|
|
|
|
--- tools/hal-luks-setup.orig 2008-05-07 19:24:29.000000000 -0400
|
|
+++ tools/hal-luks-setup
|
|
@@ -44,9 +44,9 @@ if [ -n "$HAL_METHOD_INVOKED_BY_SYSTEMBU
|
|
fi
|
|
|
|
IS_HOTPLUGGABLE=`hal-get-property --udi $HAL_PROP_BLOCK_STORAGE_DEVICE --key storage.hotpluggable`
|
|
-if [ "$IS_HOTPLUGGABLE" == "true" ] ; then
|
|
+if [ "$IS_HOTPLUGGABLE" = "true" ] ; then
|
|
ACTION="org.freedesktop.hal.storage.crypto-setup-removable"
|
|
-elif [ "$IS_HOTPLUGGABLE" == "false" ] ; then
|
|
+elif [ "$IS_HOTPLUGGABLE" = "false" ] ; then
|
|
ACTION="org.freedesktop.hal.storage.crypto-setup-fixed"
|
|
else
|
|
unknown_error
|