20 lines
460 B
Bash
20 lines
460 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
export DEBIAN_FRONTEND=noninteractive
|
||
|
|
||
|
# Update and ensure we have apt-add-repository
|
||
|
apt-get update
|
||
|
apt-get install -y software-properties-common
|
||
|
|
||
|
apt-get install -y bzr \
|
||
|
curl \
|
||
|
git \
|
||
|
make \
|
||
|
mercurial \
|
||
|
zip
|
||
|
|
||
|
# Ensure we cd into the working directory on login
|
||
|
if ! grep "cd /opt/gopath/src/github.com/hashicorp/packer" /home/vagrant/.profile ; then
|
||
|
echo 'cd /opt/gopath/src/github.com/hashicorp/packer' >> /home/vagrant/.profile
|
||
|
fi
|