From 0b575ddd20ae05eb01db690be3ec1b5f6ac755b8 Mon Sep 17 00:00:00 2001 From: TomasM Date: Thu, 14 Dec 2017 06:16:00 -0500 Subject: [PATCH] bugfix --- livekitlib | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/livekitlib b/livekitlib index 32c6df3..40560c5 100644 --- a/livekitlib +++ b/livekitlib @@ -297,14 +297,14 @@ device_bestfs() # Filesystem options for mount -# $1 = filesystem or '-t filesystem' -# returns also the $1 parameter back where appropriate +# $1.. = filesystem or '-t filesystem' +# returns also the $1.. parameter back where appropriate # fs_options() { debug_log "fs_options" "$*" local FS - FS="$1" + FS="$*" if [ "$1" = "-t" ]; then shift @@ -325,7 +325,7 @@ fs_options() # Mount command for given filesystem -# $1 = filesystem or '-t filesystem' +# $1.. = filesystem or '-t filesystem' # mount_command() { @@ -496,7 +496,7 @@ find_data_try() { debug_log "find_data_try" "$*" - local DEVICE FS FROM OPTIONS + local DEVICE FS FROM OPTIONS MOUNT mkdir -p "$1" blkid | sort | cut -d: -f 1 | grep -E -v "/loop|/ram|/zram" | while read DEVICE; do