Sha256: afbf091b2b2bb1ee54a1de32c8f869839f085af9668d872730bc1ec182bd082a

Contents?: true

Size: 536 Bytes

Versions: 12

Compression:

Stored size: 536 Bytes

Contents

#!/bin/bash

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

# etc., and remove optional things to trim down the machine.
apt-get -y update
apt-get -y upgrade
apt-get -y install linux-headers-$(uname -r) build-essential
apt-get -y install zlib1g-dev libssl-dev libreadline5-dev
apt-get clean

# Setup sudo to allow no-password sudo for "admin"
cp /etc/sudoers /etc/sudoers.orig
sed -i -e '/Defaults\s\+env_reset/a Defaults\texempt_group=admin' /etc/sudoers
sed -i -e 's/%admin ALL=(ALL) ALL/%admin ALL=NOPASSWD:ALL/g' /etc/sudoers

Version data entries

12 entries across 12 versions & 1 rubygems

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