From 541ba67daf20d34e6a89639014512a8818167c8f Mon Sep 17 00:00:00 2001 From: Jose Pedro Oliveira Date: Sat, 14 Sep 2013 02:18:04 +0100 Subject: [PATCH] Fedora: support the -v option (OVS) --- util/install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/util/install.sh b/util/install.sh index d7921e6..0c2016c 100755 --- a/util/install.sh +++ b/util/install.sh @@ -304,6 +304,12 @@ function wireshark { function ovs { echo "Installing Open vSwitch..." + if [ "$DIST" = "Fedora" ]; then + # Just install Fedora's openvswitch RPMS + $install openvswitch openvswitch-controller + return + fi + OVS_SRC=$BUILD_DIR/openvswitch OVS_BUILD=$OVS_SRC/build-$KERNEL_NAME OVS_KMODS=($OVS_BUILD/datapath/linux/{openvswitch_mod.ko,brcompat_mod.ko})