]> git.proxmox.com Git - ceph.git/blob - ceph/src/ceph-volume/ceph_volume/__init__.py
update ceph source to reef 18.2.0
[ceph.git] / ceph / src / ceph-volume / ceph_volume / __init__.py
1 from collections import namedtuple
2
3
4 sys_info = namedtuple('sys_info', ['devices'])
5 sys_info.devices = dict()
6
7
8 class UnloadedConfig(object):
9 """
10 This class is used as the default value for conf.ceph so that if
11 a configuration file is not successfully loaded then it will give
12 a nice error message when values from the config are used.
13 """
14 def __getattr__(self, *a):
15 raise RuntimeError("No valid ceph configuration file was loaded.")
16
17 conf = namedtuple('config', ['ceph', 'cluster', 'verbosity', 'path', 'log_path'])
18 conf.ceph = UnloadedConfig()
19
20 __version__ = "1.0.0"
21
22 __release__ = "reef"