mirror of
https://github.com/openvswitch/ovs
synced 2025-10-29 15:28:56 +00:00
The default is unchanged, /etc/openvswitch/conf.db. This makes it possible to transition each Open vSwitch packaging from /etc/openvswitch/conf.db to /var/lib/openvswitch/conf.db independently. Signed-off-by: Ben Pfaff <blp@nicira.com>
10 lines
431 B
Python
10 lines
431 B
Python
# 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")
|
|
LOGDIR = os.environ.get("OVS_DBDIR", "/usr/local/etc/openvswitch")
|
|
BINDIR = os.environ.get("OVS_BINDIR", "/usr/local/bin")
|