fix package path and move files under doctor_tests
[doctor.git] / tests / installer / common / restore_ceilometer.py
diff --git a/tests/installer/common/restore_ceilometer.py b/tests/installer/common/restore_ceilometer.py
deleted file mode 100644 (file)
index d25b9ed..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-##############################################################################
-# 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
-
-ep_file = '/etc/ceilometer/event_pipeline.yaml'
-ep_file_bak = '/etc/ceilometer/event_pipeline.yaml.bak'
-
-
-def restore_ep_config():
-
-    if not os.path.isfile(ep_file_bak):
-        print('Bak_file:%s does not exist.' % ep_file_bak)
-    else:
-        print('restore')
-        shutil.copyfile(ep_file_bak, ep_file)
-        os.remove(ep_file_bak)
-    return
-
-
-restore_ep_config()