Sha256: 4b0477347625fc5670893c51e05f85a41f50c1063db8f5f0d289889a86bce3a9

Contents?: true

Size: 341 Bytes

Versions: 3

Compression:

Stored size: 341 Bytes

Contents

#!/usr/bin/env bash

if [[ $EUID -ne 0 ]]; then
  echo "ERROR: This script must be run as root" 1>&2
  exit 1
fi

apt-get update
apt-get install build-essential libsqlite3-dev curl rsync git-core tmux \
  libmysqlclient-dev libxml2-dev libxslt-dev libpq-dev libsqlite3-dev \
  genisoimage mkpasswd \
  debootstrap kpartx qemu-kvm \
  vim -y

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bosh-bootstrap-0.6.0 lib/bosh-bootstrap/stages/stage_prepare_inception_vm/install_base_packages
bosh-bootstrap-0.5.1 lib/bosh-bootstrap/stages/stage_prepare_inception_vm/install_base_packages
bosh-bootstrap-0.5.0 lib/bosh-bootstrap/stages/stage_prepare_inception_vm/install_base_packages