Sha256: ea1b3cebacae94d561cd3db31fa63fdde7c225ca1dce321c5f643d40e5056637

Contents?: true

Size: 686 Bytes

Versions: 10

Compression:

Stored size: 686 Bytes

Contents

#!/bin/sh

date > /etc/vagrant_box_build_time

VBOX_VERSION=$(cat /home/vagrant/.vbox_version)

yum -y update

yum -y install \
  ruby \
  ruby-devel \
  puppet \
  rubygems \
  rubygem-erubis \
  rubygem-highline \
  rubygem-json \
  rubygem-mime-types \
  rubygem-net-ssh \
  rubygem-polyglot \
  rubygem-rest-client \
  rubygem-treetop \
  rubygem-uuidtools \
  wget \
  tar \
  bzip2

cd /tmp
wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso
mount -o loop,ro VBoxGuestAdditions_$VBOX_VERSION.iso /mnt
sh /mnt/VBoxLinuxAdditions.run
umount /mnt
rm VBoxGuestAdditions_$VBOX_VERSION.iso

gem install chef --no-rdoc --no-ri

exit

# EOF

Version data entries

10 entries across 5 versions & 1 rubygems

Version Path
veewee-0.3.6 templates/Fedora-18-x86_64/postinstall.sh
veewee-0.3.6 templates/Fedora-18-i386/postinstall.sh
veewee-0.3.5 templates/Fedora-18-i386/postinstall.sh
veewee-0.3.5 templates/Fedora-18-x86_64/postinstall.sh
veewee-0.3.4 templates/Fedora-18-x86_64/postinstall.sh
veewee-0.3.4 templates/Fedora-18-i386/postinstall.sh
veewee-0.3.3 templates/Fedora-18-x86_64/postinstall.sh
veewee-0.3.3 templates/Fedora-18-i386/postinstall.sh
veewee-0.3.2 templates/Fedora-18-i386/postinstall.sh
veewee-0.3.2 templates/Fedora-18-x86_64/postinstall.sh