mirror of
https://github.com/openvswitch/ovs
synced 2025-10-25 15:07:05 +00:00
18 lines
663 B
Plaintext
18 lines
663 B
Plaintext
|
|
## The @variables@ in this file are replaced by default directories for
|
||
|
|
## use in python/ovs/dirs.py in the source directory and replaced by the
|
||
|
|
## configured directories for use in the installed python/ovs/dirs.py.
|
||
|
|
##
|
||
|
|
import os
|
||
|
|
PKGDATADIR = os.environ.get("OVS_PKGDATADIR", """@pkgdatadir@""")
|
||
|
|
RUNDIR = os.environ.get("OVS_RUNDIR", """@RUNDIR@""")
|
||
|
|
LOGDIR = os.environ.get("OVS_LOGDIR", """@LOGDIR@""")
|
||
|
|
BINDIR = os.environ.get("OVS_BINDIR", """@bindir@""")
|
||
|
|
|
||
|
|
DBDIR = os.environ.get("OVS_DBDIR")
|
||
|
|
if not DBDIR:
|
||
|
|
sysconfdir = os.environ.get("OVS_SYSCONFDIR")
|
||
|
|
if sysconfdir:
|
||
|
|
DBDIR = "%s/openvswitch" % sysconfdir
|
||
|
|
else:
|
||
|
|
DBDIR = """@DBDIR@"""
|