mirror of
https://github.com/openvswitch/ovs
synced 2025-10-27 15:18:06 +00:00
10 lines
430 B
Python
10 lines
430 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")
|
|
DBDIR = os.environ.get("OVS_DBDIR", "/usr/local/etc/openvswitch")
|
|
BINDIR = os.environ.get("OVS_BINDIR", "/usr/local/bin")
|