summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xlib/container/start12
1 files changed, 10 insertions, 2 deletions
diff --git a/lib/container/start b/lib/container/start
index ff9ecc8..ca88af2 100755
--- a/lib/container/start
+++ b/lib/container/start
@@ -212,7 +212,11 @@ then
do
DIRECTORY="$(echo ${BIND} | awk -F: '{ print $1 }')"
- mkdir -p "${DIRECTORY}"
+ if [ ! -e "${DIRECTORY}" ]
+ then
+ echo "'${DIRECTORY}': creating non-existing directory for bind mounting"
+ mkdir -p "${DIRECTORY}"
+ fi
done
BIND=""
@@ -233,7 +237,11 @@ then
do
DIRECTORY="$(echo ${BIND_RO} | awk -F: '{ print $1 }')"
- mkdir -p "${DIRECTORY}"
+ if [ ! -e "${DIRECTORY}" ]
+ then
+ echo "'${DIRECTORY}': creating non-existing directory for bind-ro mounting"
+ mkdir -p "${DIRECTORY}"
+ fi
done
BIND_RO=""