Sha256: 7315e28346cf9b7c15748d7ea96878a0618c404e4fed63241f263b3bde8ababb

Contents?: true

Size: 568 Bytes

Versions: 28

Compression:

Stored size: 568 Bytes

Contents

#!/bin/sh

# Remove VirtualBox Guest Additions ISO that the Veewee put in our
# home dir

rm -f ~/*.iso

# Install chef & puppet

su - vagrant -c 'gem install chef puppet --user-install \
  --bindir=$HOME/bin --no-rdoc --no-ri'

# Make sure we are totally up to date

nixos-rebuild --upgrade switch

# Cleanup any previous generations and delete old packages that can be
# pruned.

for x in `seq 0 2` ; do
    nix-env --delete-generations old
    nix-collect-garbage -d
done

# Zero out the disk (for better compression)

dd if=/dev/zero of=/EMPTY bs=1M
rm -rf /EMPTY

Version data entries

28 entries across 16 versions & 1 rubygems

Version Path
veewee-0.5.0.alpha4 templates/nixos64/postinstall.sh
veewee-0.5.0.alpha4 templates/nixos-minimal-0.2-i686/postinstall.sh
veewee-0.5.0.alpha3 templates/nixos64/postinstall.sh
veewee-0.5.0.alpha3 templates/nixos-minimal-0.2-i686/postinstall.sh
veewee-0.5.0.alpha2 templates/nixos-minimal-0.2-i686/postinstall.sh
veewee-0.5.0.alpha2 templates/nixos64/postinstall.sh
veewee-0.5.0.alpha1 templates/nixos64/postinstall.sh
veewee-0.5.0.alpha1 templates/nixos-minimal-0.2-i686/postinstall.sh
veewee-0.4.5.1 templates/nixos64/postinstall.sh
veewee-0.4.5.1 templates/nixos-minimal-0.2-i686/postinstall.sh
veewee-0.4.5 templates/nixos-minimal-0.2-i686/postinstall.sh
veewee-0.4.5 templates/nixos64/postinstall.sh
veewee-0.4.5.pre1 templates/nixos-minimal-0.2-i686/postinstall.sh
veewee-0.4.5.pre1 templates/nixos64/postinstall.sh
veewee-0.4.4 templates/nixos64/postinstall.sh
veewee-0.4.4 templates/nixos-minimal-0.2-i686/postinstall.sh
veewee-0.4.3 templates/nixos64/postinstall.sh
veewee-0.4.3 templates/nixos-minimal-0.2-i686/postinstall.sh
veewee-0.4.2 templates/nixos64/postinstall.sh
veewee-0.4.2 templates/nixos-minimal-0.2-i686/postinstall.sh