Support Apex with services in containers
[doctor.git] / doctor_tests / installer / common / restore_compute_config.py
1 ##############################################################################
2 # Copyright (c) 2018 Nokia Corporation and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 import os
10 import shutil
11
12
13 def restore_cpu_allocation_ratio():
14     nova_base = "/var/lib/config-data/puppet-generated/nova"
15     if not os.path.isdir(nova_base):
16         nova_base = ""
17     nova_file = nova_base + '/etc/nova/nova.conf'
18     nova_file_bak = nova_base + '/etc/nova/nova.bak'
19
20     if not os.path.isfile(nova_file_bak):
21         print('Bak_file:%s does not exist.' % nova_file_bak)
22     else:
23         print('restore: %s' % nova_file)
24         shutil.copyfile(nova_file_bak, nova_file)
25         os.remove(nova_file_bak)
26     return
27
28 restore_cpu_allocation_ratio()