diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2017-05-10 10:21:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2017-05-10 10:21:18 +0000 |
commit | 1539c1969816e2f618ab56bb167a9f7cd4360d87 (patch) | |
tree | 8970fe6450d27449b543dd493a9db17aceb3cf84 | |
parent | Releasing version 20170510. (diff) | |
download | compute-tools-1539c1969816e2f618ab56bb167a9f7cd4360d87.tar.xz compute-tools-1539c1969816e2f618ab56bb167a9f7cd4360d87.zip |
Correcting bind-ro option handling to actually work.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | lib/container/start | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/container/start b/lib/container/start index 014e859..88f2ea6 100755 --- a/lib/container/start +++ b/lib/container/start @@ -238,7 +238,7 @@ then for DIRECTORIES in ${BINDS_RO} do - BIND_RO="${BIND_RO} --bind ${DIRECTORIES}" + BIND_RO="${BIND_RO} --bind-ro ${DIRECTORIES}" done fi |