From da25598a6a31abe0579ffed12d1719e5ff75f9a7 Mon Sep 17 00:00:00 2001 From: dongwenjuan Date: Wed, 22 Aug 2018 09:48:58 +0800 Subject: bugfix: add doctor datasource in congress Change-Id: I465fd6c59daf99dd543488a15819dab78e8cdd7b Signed-off-by: dongwenjuan --- doctor_tests/installer/common/restore_congress.py | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 doctor_tests/installer/common/restore_congress.py (limited to 'doctor_tests/installer/common/restore_congress.py') diff --git a/doctor_tests/installer/common/restore_congress.py b/doctor_tests/installer/common/restore_congress.py new file mode 100644 index 00000000..b5efb1ef --- /dev/null +++ b/doctor_tests/installer/common/restore_congress.py @@ -0,0 +1,26 @@ +############################################################################## +# Copyright (c) 2017 ZTE Corporation and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +import os +import shutil + + +def restore_drivers_config(): + co_conf = "/etc/congress/congress.conf" + co_conf_bak = "/etc/congress/congress.conf.bak" + + if not os.path.isfile(co_conf_bak): + print('Bak_file:%s does not exist.' % co_conf_bak) + else: + print('restore: %s' % co_conf) + shutil.copyfile(co_conf_bak, co_conf) + os.remove(co_conf_bak) + return + + +restore_drivers_config() -- cgit 1.2.3-korg