summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2017-07-09 06:39:55 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2017-07-22 21:31:53 +0000
commit59d5878332571abe0495e701aac3eae087d4cc38 (patch)
treecc05f43f4ae8aa9a899b655aab37aaa7a43858e6 /bin
parentAdding message about enabled and disabled container commands in container-she... (diff)
downloadcompute-tools-59d5878332571abe0495e701aac3eae087d4cc38.tar.xz
compute-tools-59d5878332571abe0495e701aac3eae087d4cc38.zip
Updating output of container-shell help.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/container-shell8
1 files changed, 3 insertions, 5 deletions
diff --git a/bin/container-shell b/bin/container-shell
index 4847986..4903465 100755
--- a/bin/container-shell
+++ b/bin/container-shell
@@ -63,23 +63,21 @@ Shell ()
echo
cd "/usr/lib/${SOFTWARE}/${PROGRAM}"
- find . -type f -printf "%f\n" | sort
+ find . -type f -printf " %f\n" | sort
cd "${OLDPWD}"
if [ -n "${CONTAINER_COMMANDS_ENABLE}" ]
then
echo
echo "The following container commands are enabled for the current user:"
- echo
- echo "${CONTAINER_COMMANDS_ENABLE}"
+ echo " ${CONTAINER_COMMANDS_ENABLE}"
fi
if [ -n "${CONTAINER_COMMANDS_DISABLE}" ]
then
echo
echo "The following container commands are disabled for the current user:"
- echo
- echo "${CONTAINER_COMMANDS_DISABLE}"
+ echo " ${CONTAINER_COMMANDS_DISABLE}"
fi
echo