summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--initramfs/initrd-stuff/etc/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/initramfs/initrd-stuff/etc/functions b/initramfs/initrd-stuff/etc/functions
index 13753cb4..ca3da314 100644
--- a/initramfs/initrd-stuff/etc/functions
+++ b/initramfs/initrd-stuff/etc/functions
@@ -396,7 +396,7 @@ echo "fileget via $fileprot from $fileserv/$cfgfile finished" >/tmp/file-done
# to recreate directories in union mounts
testmkd () {
test -d $1 || mkdir -p $1 >/dev/null 2>&1
- for i in "$2" "$3" ; do
+ [ $# -ge 2 ] && for i in "$2" "$3" ; do
echo "$i"|grep -E "^[0-9]{3,4}$" >/dev/null 2>&1 && \
chmod "$i" $1 >/dev/null 2>&1
echo "$i"|grep -E ":." >/dev/null 2>&1 && \