summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.d/encswap.in4
1 files changed, 1 insertions, 3 deletions
diff --git a/init.d/encswap.in b/init.d/encswap.in
index a03fe58..7df669d 100644
--- a/init.d/encswap.in
+++ b/init.d/encswap.in
@@ -11,10 +11,9 @@ start() {
while read device mountpoint type options rest ; do
case ":${device}:${type}:${options}" in
:#*)
- continue
;;
*.bde:swap:sw)
- passphrase=`dd if=/dev/random count=1 2>/dev/null | md5 -q`
+ passphrase=$(dd if=/dev/random count=1 2>/dev/null | md5 -q)
device="${device%.bde}"
gbde init "${device}" -P "${passphrase}" || return 1
gbde attach "${device}" -p "${passphrase}" || return 1
@@ -31,7 +30,6 @@ stop() {
while read device mountpoint type options rest ; do
case ":${device}:${type}:${options}" in
:#*)
- continue
;;
*.bde:swap:sw)
device="${device%.bde}"