diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2018-05-27 06:25:41 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2018-05-27 06:25:41 +0000 |
commit | 3f5c9f1e52d9f4c5b9e9229b15223f30a44f432f (patch) | |
tree | 58830ed6d07ac6f921c115b3c7f18ff474ff8ee1 /bin/container | |
parent | Releasing version 20180503. (diff) | |
download | compute-tools-3f5c9f1e52d9f4c5b9e9229b15223f30a44f432f.tar.xz compute-tools-3f5c9f1e52d9f4c5b9e9229b15223f30a44f432f.zip |
Calling commands without exec to make multiple commands in a row work properly.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'bin/container')
-rwxr-xr-x | bin/container | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/container b/bin/container index 9634d05..6535d2d 100755 --- a/bin/container +++ b/bin/container @@ -90,7 +90,7 @@ do fi # Run - exec "/usr/lib/${SOFTWARE}/${PROGRAM}/${COMMAND}" "${OPTIONS}" + "/usr/lib/${SOFTWARE}/${PROGRAM}/${COMMAND}" "${OPTIONS}" # Post hooks for FILE in "${HOOKS}/post-${PROGRAM}".* "${HOOKS}/${NAME}.post-${PROGRAM}" |