diff options
author | 2018-10-25 13:36:16 +0000 | |
---|---|---|
committer | 2018-10-25 13:36:16 +0000 | |
commit | baac6579556f8216b36db0d0f87f9c2d4f8b4ef5 (patch) | |
tree | 71d467ffd009f469671d77927f34b15098ecd431 /doctor_tests/installer/common/set_congress.py | |
parent | 23bf63c4616040cb0d69cd26238af2a4a7c00a90 (diff) | |
parent | a6575910a137f8932e294f66c9da3194ad937691 (diff) |
Merge "Support Apex with services in containers"
Diffstat (limited to 'doctor_tests/installer/common/set_congress.py')
-rw-r--r-- | doctor_tests/installer/common/set_congress.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doctor_tests/installer/common/set_congress.py b/doctor_tests/installer/common/set_congress.py index d8438701..d2754838 100644 --- a/doctor_tests/installer/common/set_congress.py +++ b/doctor_tests/installer/common/set_congress.py @@ -7,12 +7,16 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## import configparser +import os import shutil def set_drivers_config(): - co_conf = "/etc/congress/congress.conf" - co_conf_bak = "/etc/congress/congress.conf.bak" + co_base = "/var/lib/config-data/puppet-generated/congress" + if not os.path.isdir(co_base): + co_base = "" + co_conf = co_base + "/etc/congress/congress.conf" + co_conf_bak = co_base + "/etc/congress/congress.conf.bak" doctor_driver = "congress.datasources.doctor_driver.DoctorDriver" config_modified = False |