Sha256: 8e440cd2b4bbd372d70205de6da86575b256b276ddc47e46ab766535cf86931a

Contents?: true

Size: 559 Bytes

Versions: 12

Compression:

Stored size: 559 Bytes

Contents

#!/bin/bash

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

# 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

Version data entries

12 entries across 12 versions & 1 rubygems

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