summaryrefslogtreecommitdiffstats
path: root/deploy/get_conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/get_conf.py')
-rwxr-xr-xdeploy/get_conf.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/deploy/get_conf.py b/deploy/get_conf.py
index ca9e2cf6..1f4500a4 100755
--- a/deploy/get_conf.py
+++ b/deploy/get_conf.py
@@ -81,6 +81,13 @@ def host(host=None):
return map
+@decorator_mk('hosts')
+def mac_address(host=None):
+ mac_addresses = host.get('mac_addresses', [])
+ map = {host['name']: mac_addresses}
+ return map
+
+
def network_config_parse(s, dha_file):
network_map = network(s)
vip = s.get('internal_vip')
@@ -100,9 +107,10 @@ def config(dha_file, network_file):
data = init(dha_file)
ceph_disk_name = data.get('ceph_disk_name')
hosts_name = dha_config_parse(data, dha_file)
+ mac_address_map = mac_address(data)
data = init(network_file)
network_map, vip, interface_map = network_config_parse(data, network_file)
- return interface_map, hosts_name, network_map, vip, ceph_disk_name
+ return interface_map, hosts_name, network_map, vip, ceph_disk_name, mac_address_map
def parse(conf, args):