diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2008-12-12 22:52:38 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2008-12-12 22:52:38 +0100 |
commit | 39122606ab787d7cff93fb8bfd6eb7850f2b5560 (patch) | |
tree | 69c4880a2cd966896b768dddd53f2af8d83319b5 | |
parent | 91c22b1e65a950275656ea0b411888141450bcff (diff) |
mkfs fix
-rw-r--r-- | src/core/libs/lib-blockdevices-filesystems.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/libs/lib-blockdevices-filesystems.sh b/src/core/libs/lib-blockdevices-filesystems.sh index 364b41d..f74a7b8 100644 --- a/src/core/libs/lib-blockdevices-filesystems.sh +++ b/src/core/libs/lib-blockdevices-filesystems.sh @@ -592,7 +592,7 @@ process_filesystem () # Add to temp fstab, if not already there. - if [ -n "$fs_mountpoint" -a $fs_mount = target ] + if [ -n "$fs_mountpoint" -a "$fs_mount" = target ] then local _uuid="$(getuuid $part)" if [ -n "${_uuid}" ]; then |