diff options
Diffstat (limited to '')
-rwxr-xr-x | lib/container/start | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/container/start b/lib/container/start index 31ed47e..d73e328 100755 --- a/lib/container/start +++ b/lib/container/start @@ -106,6 +106,12 @@ case "${NAME}" in for NAME in ${NAMES} do + case "${VERBOSE}" in + true) + echo "Starting container ${NAME}..." + ;; + esac + container start --name ${NAME} ${OPTIONS_ALL} || true done |