summaryrefslogtreecommitdiff
path: root/hack/dind
diff options
context:
space:
mode:
Diffstat (limited to 'hack/dind')
-rwxr-xr-xhack/dind4
1 files changed, 2 insertions, 2 deletions
diff --git a/hack/dind b/hack/dind
index eff656b0e0..94147f5324 100755
--- a/hack/dind
+++ b/hack/dind
@@ -5,7 +5,7 @@
# See the blog post: http://blog.docker.io/2013/09/docker-can-now-run-within-docker/
#
# This script should be executed inside a docker container in privilieged mode
-# ('docker run -privileged', introduced in docker 0.6).
+# ('docker run --privileged', introduced in docker 0.6).
# Usage: dind CMD [ARG...]
@@ -17,7 +17,7 @@ CGROUP=/sys/fs/cgroup
mountpoint -q $CGROUP ||
mount -n -t tmpfs -o uid=0,gid=0,mode=0755 cgroup $CGROUP || {
- echo "Could not make a tmpfs mount. Did you use -privileged?"
+ echo "Could not make a tmpfs mount. Did you use --privileged?"
exit 1
}