Skip to content
Snippets Groups Projects
install_ovs.sh 220 B
Newer Older
Brandon Heller's avatar
Brandon Heller committed
#!/bin/sh
#Brandon Heller (brandonh@stanford.edu)
#Install OVS on Debian Lenny

#Install OVS:
git clone git://openvswitch.org/openvswitch
cd openvswitch
./boot.sh
./configure --with-l26=/lib/modules/`uname -r`/build
Brandon Heller's avatar
Brandon Heller committed
make