e4b37f92e2956eb6293039b174639e621ef35b60
[sliver-openvswitch.git] / python / ovs / dirs.py
1 # These are the default directories.  They will be replaced by the
2 # configured directories at install time.
3
4 import os
5 PKGDATADIR = os.environ.get("OVS_PKGDATADIR", "/usr/local/share/openvswitch")
6 RUNDIR = os.environ.get("OVS_RUNDIR", "/var/run")
7 LOGDIR = os.environ.get("OVS_LOGDIR", "/usr/local/var/log")
8 DBDIR = os.environ.get("OVS_DBDIR", "/usr/local/etc/openvswitch")
9 BINDIR = os.environ.get("OVS_BINDIR", "/usr/local/bin")