From 26e8bc94993691c4431b27f50ed0b5e293ac2a77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= Date: Mon, 11 Mar 2013 23:37:38 -0700 Subject: [PATCH] Add script upload instructions Upstream-commit: b728c1a81fbb441442d635788e814d47436c613f Component: engine --- components/engine/install.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/components/engine/install.sh b/components/engine/install.sh index f8dca17476..0cfba4ddc3 100644 --- a/components/engine/install.sh +++ b/components/engine/install.sh @@ -1,6 +1,10 @@ #!/bin/sh # This script is meant for quick & easy install via 'curl URL-OF-SCRIPT | sh' -# Courtesy of Jeff Lindsay +# Original version by Jeff Lindsay +# Revamped by Jerome Petazzoni +# +# This script canonical location is http://get.docker.io/; to update it, run: +# s3cmd put -m text/x-shellscript -P install.sh s3://get.docker.io/index echo "Ensuring basic dependencies are installed..." apt-get -qq update @@ -47,5 +51,5 @@ fi echo "Starting dockerd..." start dockerd > /dev/null -echo "Finished!" +echo "Done." echo