Sha256: 17ee348b517ba148bb6ca6f3ec502b1f59783352fb36aeb80ae4d46a505a1ec4

Contents?: true

Size: 714 Bytes

Versions: 12

Compression:

Stored size: 714 Bytes

Contents

#!/bin/bash

if [ -f .veewee_params ]
then
  . .veewee_params
fi

# Remove items used for building, since they aren't needed anymore
apt-get -y remove linux-headers-$(uname -r) build-essential
apt-get -y autoremove

# Removing leftover leases and persistent rules
echo "cleaning up dhcp leases"
rm /var/lib/dhcp3/*

# Make sure Udev doesn't block our network
# http://6.ptmc.org/?p=164
echo "cleaning up udev rules"
rm /etc/udev/rules.d/70-persistent-net.rules
mkdir /etc/udev/rules.d/70-persistent-net.rules
rm -rf /dev/.udev/
rm /lib/udev/rules.d/75-persistent-net-generator.rules

echo "Adding a 2 sec delay to the interface up, to make the dhclient happy"
echo "pre-up sleep 2" >> /etc/network/interfaces
exit

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
veewee-0.5.0.alpha4 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.5.0.alpha3 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.5.0.alpha2 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.5.0.alpha1 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.4.5.1 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.4.5 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.4.5.pre1 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.4.4 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.4.3 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.4.2 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.4.1 templates/ubuntu-10.04.3-server-amd64/cleanup.sh
veewee-0.4.0 templates/ubuntu-10.04.3-server-amd64/cleanup.sh