14 lines
224 B
YAML
14 lines
224 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
become: yes
|
|
gather_facts: yes
|
|
|
|
vars:
|
|
dhcpd_subnets:
|
|
- network: "{{ ansible_default_ipv4.network }}"
|
|
netmask: "255.255.255.0"
|
|
|
|
roles:
|
|
- role: ansible-role-dhcpd
|