/usr/src/openvswitch-1.4.0/python/ovs/dirs.py is in openvswitch-datapath-dkms 1.4.0-1ubuntu1.
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 | # These are the default directories. They will be replaced by the
# configured directories at install time.
import os
PKGDATADIR = os.environ.get("OVS_PKGDATADIR", "/usr/local/share/openvswitch")
RUNDIR = os.environ.get("OVS_RUNDIR", "/var/run")
LOGDIR = os.environ.get("OVS_LOGDIR", "/usr/local/var/log")
BINDIR = os.environ.get("OVS_BINDIR", "/usr/local/bin")
|