This file is indexed.

/etc/init/openvswitch-force-reload-kmod.conf is in openvswitch-switch 2.5.5-0ubuntu0.16.04.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# vim: set ft=upstart ts=2 et:
description "Open vSwitch - force reload of kernel module"
author "James Page <james.page@ubuntu.com"

task

script
  stop openvswitch-switch || true
  # Drop gre module as well - native kernel module in 3.11 uses
  # this and it blocks GRE protocol registration in the DKMS
  # module
  modprobe -r openvswitch gre || true
  start openvswitch-switch
end script