SVN: rc-scripts/trunk/rc.d/init.d/cryptsetup

glen glen at pld-linux.org
Mon Nov 10 01:15:32 CET 2008


Author: glen
Date: Mon Nov 10 01:15:32 2008
New Revision: 9973

Modified:
   rc-scripts/trunk/rc.d/init.d/cryptsetup
Log:
- no bashism

Modified: rc-scripts/trunk/rc.d/init.d/cryptsetup
==============================================================================
--- rc-scripts/trunk/rc.d/init.d/cryptsetup	(original)
+++ rc-scripts/trunk/rc.d/init.d/cryptsetup	Mon Nov 10 01:15:32 2008
@@ -25,13 +25,13 @@
 				mode=$(ls -l "$key" | cut -c 5-10)
 				owner=$(ls -l $key | awk '{ print $3 }')
 				if [ "$mode" != "------" ] && ! key_is_random "$key"; then
-					echo $"INSECURE MODE FOR $key"
+					echo "INSECURE MODE FOR $key"
 				fi
 				if [ "$owner" != root ]; then
-					echo $"INSECURE OWNER FOR $key"
+					echo "INSECURE OWNER FOR $key"
 				fi
 			else
-				echo $"Key file for $dst not found, skipping"
+				echo "Key file for $dst not found, skipping"
 				ret=1
 				continue
 			fi
@@ -55,21 +55,21 @@
 			cipher)
 				params="$params -c $value"
 				if [ -z "$value" ]; then
-					echo $"$dst: no value for cipher option, skipping"
+					echo "$dst: no value for cipher option, skipping"
 					skip="yes"
 				fi
 			;;
 			size)
 				params="$params -s $value"
 				if [ -z "$value" ]; then
-					echo $"$dst: no value for size option, skipping"
+					echo "$dst: no value for size option, skipping"
 					skip="yes"
 				fi
 			;;
 			hash)
 				params="$params -h $value"
 				if [ -z "$value" ]; then
-					echo $"$dst: no value for hash option, skipping"
+					echo "$dst: no value for hash option, skipping"
 					skip="yes"
 				fi
 			;;
@@ -91,7 +91,7 @@
 
 		if /sbin/cryptsetup isLuks "$src" 2>/dev/null; then
 			if key_is_random "$key"; then
-				echo $"$dst: LUKS requires non-random key, skipping"
+				echo "$dst: LUKS requires non-random key, skipping"
 				ret=1
 				continue
 			fi


More information about the pld-cvs-commit mailing list