From 65544fb6aac8267b4519455d0475f7fc9eef7f1b Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Wed, 2 Nov 2016 15:36:03 -0500 Subject: [PATCH] ceph-common: remove unused mon_addr_interface.j2 template Signed-off-by: Andrew Schoen --- roles/ceph-common/templates/mon_addr_interface.j2 | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 roles/ceph-common/templates/mon_addr_interface.j2 diff --git a/roles/ceph-common/templates/mon_addr_interface.j2 b/roles/ceph-common/templates/mon_addr_interface.j2 deleted file mode 100644 index 107483177..000000000 --- a/roles/ceph-common/templates/mon_addr_interface.j2 +++ /dev/null @@ -1,7 +0,0 @@ -mon host = {% for host in groups[mon_group_name] %} - {% for key in hostvars[host].iterkeys() %} - {% if hostvars[host][key]['macaddress'] is defined and hostvars[host][key]['device'] is defined and hostvars[host][key]['device'] == monitor_interface %} - {{ hostvars[host][key]['ipv4']['address'] }} - {% endif %} - {% endfor %} -{% if not loop.last %},{% endif %}{% endfor %}