tunneling: Remove old GRE implementation.
[sliver-openvswitch.git] / xenserver / etc_init.d_openvswitch
index dc5edd0..926ce52 100755 (executable)
@@ -129,9 +129,6 @@ function insert_modules_if_required {
     if [ -f "/lib/modules/`uname -r`/kernel/extra/openvswitch/veth_mod.ko" ] && ! lsmod | grep -q "veth_mod"; then
         action "Inserting veth module" modprobe veth_mod
     fi
-    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
 }
 
 function remove_modules {
@@ -141,9 +138,6 @@ function remove_modules {
     if lsmod | grep -q "openvswitch_mod"; then
         action "Removing openvswitch module" rmmod openvswitch_mod.ko
     fi
-    if lsmod | grep -q "ip_gre_mod"; then
-        action "Removing ip_gre module" rmmod ip_gre_mod.ko
-    fi
 }
 
 function start_ovsdb_server {