Skip to content
Snippets Groups Projects
Commit c4162761 authored by Benjamin Graillot's avatar Benjamin Graillot
Browse files

Merge branch 'interfaces-fix' into 'newinfra'

[interfaces] Use ipaddr to get network and netmask

See merge request !74
parents 59f73fed 6acab35b
No related branches found
No related tags found
1 merge request!74[interfaces] Use ipaddr to get network and netmask
#!/usr/bin/env ansible-playbook
---
- hosts: voyager.adm.crans.org
- hosts: voyager.adm.crans.org,boeing.adm.crans.org
vars:
vlan:
- name: srv
......
{{ ansible_header | comment }}
{% set vlan_name = (item.name | replace('_', '-')) %}
{% set subnet = query('ldap', 'network', vlan_name) %}
{% set subnet_network = (query('ldap', 'network', vlan_name) | ipaddr('network')) %}
{% set subnet_netmask = (query('ldap', 'network', vlan_name) | ipaddr('netmask')) %}
{% set ips = query('ldap', 'ip', ansible_hostname, vlan_name) %}
{% if (ips | ipv4 | length) > 0 %}
auto {{ interfaces[item.name] }}
......@@ -9,8 +10,8 @@ iface {{ interfaces[item.name] }} inet static
{% for ip in (ips | ipv4) %}
address {{ ip }}
{% endfor %}
network {{ subnet.network }}
netmask {{ subnet.netmask }}
network {{ subnet_network }}
netmask {{ subnet_netmask }}
{% if item.gateway is defined %}
gateway {{ item.gateway }}
{% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment