From f9d594bbe91b0c62fc1808299863090562643d8a Mon Sep 17 00:00:00 2001 From: frio Date: Fri, 21 Jun 2013 09:06:30 +1200 Subject: [PATCH] Explicitly installs dnsutils when bootstrapping The dig command at line 19 requires dnsutils. It's part of ubuntu-standard, but my VM host doesn't install that by default. Explicitly depending upon it fixes the installation. --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 8c3c294e9..cb81eb036 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -3,7 +3,7 @@ DOKKU_STACK=${DOKKU_STACK:-"http://s3.amazonaws.com/progrium-dokku/progrium_buil apt-get install -y linux-image-extra-`uname -r` software-properties-common add-apt-repository -y ppa:dotcloud/lxc-docker -apt-get update && apt-get install -y lxc-docker git ruby nginx make +apt-get update && apt-get install -y lxc-docker git ruby nginx make dnsutils cd ~ && git clone ${DOKKU_REPO} cd dokku && make install @@ -21,4 +21,4 @@ echo $HOSTNAME > /home/git/$HOSTFILE echo echo "Be sure to upload a public key for your user:" -echo " cat ~/.ssh/id_rsa.pub | ssh root@$HOSTNAME \"gitreceive upload-key progrium\"" \ No newline at end of file +echo " cat ~/.ssh/id_rsa.pub | ssh root@$HOSTNAME \"gitreceive upload-key progrium\""