aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2012-07-16 00:40:21 +0200
committerTom Gundersen <teg@jklm.no>2012-07-16 00:40:21 +0200
commitf58ae22f47c5ee95c1213aaa632f47cff92f5955 (patch)
tree13b3a3eff475a226f42cbf351f0263ea92565e5b /functions
parent77dfb326d54bb5b66ab23b841c40f4ff1df8f495 (diff)
downloadinitscripts-f58ae22f47c5ee95c1213aaa632f47cff92f5955.tar.xz
cryptsetup: fix up stray IFS assignments2012.07.1
Signed-off-by: Tom Gundersen <teg@jklm.no>
Diffstat (limited to 'functions')
-rw-r--r--functions5
1 files changed, 2 insertions, 3 deletions
diff --git a/functions b/functions
index 5be90c7..36cfd30 100644
--- a/functions
+++ b/functions
@@ -466,14 +466,13 @@ do_unlock_systemd() {
if ! /usr/lib/systemd/systemd-cryptsetup attach "$1" "$2" "$3" $4; then
failed=1
else
- IFS=,
- if in_array swap ${options[@]}; then
+ if IFS=, in_array swap ${options[@]}; then
# create swap on the device only if no fs signature exists
blkid -p "$2" &>/dev/null
if (( $? == 2 )) || ! mkswap /dev/mapper/$name >/dev/null; then
failed=1
fi
- elif in_array tmp ${options[@]}; then
+ elif IFS=, in_array tmp ${options[@]}; then
# create fs on the device only if no fs signature exists
blkid -p "$2" &>/dev/null
if (( $? == 2 )) || ! mke2fs /dev/mapper/$name >/dev/null; then