Sha256: 6f67b11f1b11948f639e1d45deb3948b1884bcc30e0448c14ed5ec288daafbb8

Contents?: true

Size: 597 Bytes

Versions: 9

Compression:

Stored size: 597 Bytes

Contents

#!/bin/bash

if [ -f .veewee_params ]
then
  . .veewee_params
fi


# Apt-install various things necessary for Ruby, guest additions,
# etc., and remove optional things to trim down the machine.
apt-get -y update
apt-get -y upgrade
apt-get -y install gcc build-essential linux-headers-$(uname -r)
apt-get -y install zlib1g-dev libssl-dev libreadline-gplv2-dev libyaml-dev
apt-get -y install vim curl
apt-get clean

# Set up sudo
( cat <<'EOP'
%vagrant ALL=NOPASSWD:ALL
EOP
) > /tmp/vagrant
chmod 0440 /tmp/vagrant
mv /tmp/vagrant /etc/sudoers.d/

# Install NFS client
apt-get -y install nfs-common

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
veewee-0.5.0.alpha1 templates/ubuntu-12.04.2-server-amd64/base.sh
veewee-0.4.5.1 templates/ubuntu-12.04.2-server-amd64/base.sh
veewee-0.4.5 templates/ubuntu-12.04.2-server-amd64/base.sh
veewee-0.4.5.pre1 templates/ubuntu-12.04.2-server-amd64/base.sh
veewee-0.4.4 templates/ubuntu-12.04.2-server-amd64/base.sh
veewee-0.4.3 templates/ubuntu-12.04.2-server-amd64/base.sh
veewee-0.4.2 templates/ubuntu-12.04.2-server-amd64/base.sh
veewee-0.4.1 templates/ubuntu-12.04.2-server-amd64/base.sh
veewee-0.4.0 templates/ubuntu-12.04.2-server-amd64/base.sh