Sha256: 3079461d358b15d3df33354f93c221fad5436e9a5f5043d1e73e3a05f6618bbf

Contents?: true

Size: 677 Bytes

Versions: 30

Compression:

Stored size: 677 Bytes

Contents

# 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

#Clean up tmp
rm -rf /tmp/*

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

# 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

30 entries across 16 versions & 1 rubygems

Version Path
veewee-0.4.1 templates/ubuntu-12.04.3-server-amd64/cleanup.sh
veewee-0.4.0 templates/ubuntu-12.04.3-server-amd64/cleanup.sh
veewee-0.3.12 templates/ubuntu-12.04.3-server-amd64/cleanup.sh
veewee-0.3.12 templates/ubuntu-12.04.2-server-amd64/cleanup.sh
veewee-0.3.11 templates/ubuntu-12.04.3-server-amd64/cleanup.sh
veewee-0.3.11 templates/ubuntu-12.04.2-server-amd64/cleanup.sh
veewee-0.3.10 templates/ubuntu-12.04.2-server-amd64/cleanup.sh
veewee-0.3.10 templates/ubuntu-12.04.3-server-amd64/cleanup.sh
veewee-0.3.9 templates/ubuntu-12.04.3-server-amd64/cleanup.sh
veewee-0.3.9 templates/ubuntu-12.04.2-server-amd64/cleanup.sh