Sha256: 40b821fca9d6e669b39c719eede7f62fc0548bf67b34644ba6eac75a228b5718

Contents?: true

Size: 659 Bytes

Versions: 124

Compression:

Stored size: 659 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

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

124 entries across 36 versions & 3 rubygems

Version Path
veewee-0.2.3 templates/Fedora-16-x86_64/postinstall.sh
veewee-0.2.3 templates/Fedora-16-i386/postinstall.sh
veewee-0.2.2 templates/Fedora-16-x86_64/postinstall.sh
veewee-0.2.2 templates/Fedora-16-i386/postinstall.sh