summaryrefslogtreecommitdiffstats
path: root/auth/docker/dstop.sh
diff options
context:
space:
mode:
Diffstat (limited to 'auth/docker/dstop.sh')
-rw-r--r--auth/docker/dstop.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/auth/docker/dstop.sh b/auth/docker/dstop.sh
index 256385d5..fce79226 100644
--- a/auth/docker/dstop.sh
+++ b/auth/docker/dstop.sh
@@ -23,7 +23,9 @@
DOCKER=${DOCKER:=docker}
if [ "$1" == "" ]; then
- AAF_COMPONENTS=$(tail -r components)
+ for C in $(cat components); do
+ AAF_COMPONENTS="$C $AAF_COMPONENTS"
+ done
else
AAF_COMPONENTS="$@"
fi