Sha256: 53a0208a3db2826f008fa75abb9babc4a370d1071ffeffce92e2899adc387ad5

Contents?: true

Size: 1.5 KB

Versions: 50

Compression:

Stored size: 1.5 KB

Contents

#
# postinstall.sh
#

date > /etc/vagrant_box_build_time

# remove zypper locks on removed packages to avoid later dependency problems
zypper --non-interactive rl  \*

# install vagrant key
echo -e "\ninstall vagrant key ..."
mkdir -m 0700 /home/vagrant/.ssh
cd /home/vagrant/.ssh
wget --no-check-certificate -O authorized_keys https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub
chmod 0600 /home/vagrant/.ssh/authorized_keys
chown -R vagrant.users /home/vagrant/.ssh

# update sudoers
echo -e "\nupdate sudoers ..."
echo -e "\n# added by veewee/postinstall.sh" >> /etc/sudoers
echo -e "vagrant ALL=(ALL) NOPASSWD: ALL\n" >> /etc/sudoers

# speed-up remote logins
echo -e "\nspeed-up remote logins ..."
echo -e "\n# added by veewee/postinstall.sh" >> /etc/ssh/sshd_config
echo -e "UseDNS no\n" >> /etc/ssh/sshd_config

# install chef and puppet
echo -e "\ninstall chef and puppet ..."
gem install chef --no-ri --no-rdoc
gem install puppet --no-ri --no-rdoc

# install the virtualbox guest additions
echo -e "\ninstall the virtualbox guest additions ..."
zypper --non-interactive remove `rpm -qa virtualbox-guest-*` >/dev/null 2>&1
VBOX_VERSION=$(cat /home/vagrant/.vbox_version)
cd /tmp
wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso
#wget http://192.168.178.10/VBoxGuestAdditions_$VBOX_VERSION.iso
mount -o loop VBoxGuestAdditions_$VBOX_VERSION.iso /mnt
sh /mnt/VBoxLinuxAdditions.run
umount /mnt
rm -f VBoxGuestAdditions_$VBOX_VERSION.iso

echo -e "\nall done.\n"
exit

Version data entries

50 entries across 25 versions & 2 rubygems

Version Path
veewee-0.5.0.alpha4 templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
veewee-0.5.0.alpha4 templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
veewee-0.5.0.alpha3 templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
veewee-0.5.0.alpha3 templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
veewee-0.5.0.alpha2 templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
veewee-0.5.0.alpha2 templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
veewee-0.5.0.alpha1 templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
veewee-0.5.0.alpha1 templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
veewee-0.4.5.1 templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
veewee-0.4.5.1 templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
veewee-0.4.5 templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
veewee-0.4.5 templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
veewee-0.4.5.pre1 templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
veewee-0.4.5.pre1 templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
veewee-0.4.4 templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
veewee-0.4.4 templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
veewee-0.4.3 templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
veewee-0.4.3 templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
veewee-0.4.2 templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
veewee-0.4.2 templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh