From: Justin Pettit Date: Mon, 12 Apr 2010 20:12:34 +0000 (-0700) Subject: xenserver: Fix ip_gre_mod modprobe issue in init script X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9888b1b43ba258e7842100799406f57392c76db7;p=openvswitch xenserver: Fix ip_gre_mod modprobe issue in init script The OVS kernel modules were moved to kernel/extra/openvswitch, but the init script wasn't updated to look for the ip_gre_mod kernel module there. This commit fixes that. CC: Paul Ingram --- diff --git a/xenserver/etc_init.d_openvswitch b/xenserver/etc_init.d_openvswitch index 8b703fc8..b7feb9b4 100755 --- a/xenserver/etc_init.d_openvswitch +++ b/xenserver/etc_init.d_openvswitch @@ -126,7 +126,7 @@ function insert_modules_if_required { if [ "$ENABLE_BRCOMPAT" = "y" ] && [ -n "$BRCOMPATD_PIDFILE" ] && ! lsmod | grep -q "brcompat_mod"; then action "Inserting brcompat module" modprobe brcompat_mod fi - if [ -f "/lib/modules/`uname -r`/kernel/net/openvswitch/ip_gre_mod.ko" ] && ! lsmod | grep -q "ip_gre_mod"; then + if [ -f "/lib/modules/`uname -r`/kernel/extra/openvswitch/ip_gre_mod.ko" ] && ! lsmod | grep -q "ip_gre_mod"; then action "Inserting ip_gre module" modprobe ip_gre_mod fi }