0.1.22-DEV-20220828-202411

--------------------------
    * ADD:
      - add support for centos 8+

    * MODIFY:
      - modify dns for vlan1
This commit is contained in:
2022-08-28 20:25:05 -04:00
parent c9bdf531fe
commit c9797f1508
2 changed files with 19 additions and 2 deletions

View File

@ -26,7 +26,7 @@ dhcp_networks:
range_from : 10.1.1.27
range_to : 10.1.1.99
broadcast : 10.1.1.255
dns : 10.1.1.211
dns : 10.10.10.55
pxeboot : 10.1.1.193

View File

@ -4,6 +4,18 @@
yum:
name: dhcp
state: present
when:
- ansible_distribution == "CentOS"
- ansible_distribution_major_version < "8"
- name: install dhcp-server package
dnf:
name: dhcp-server
state: present
when:
- ansible_distribution == "CentOS"
- ansible_distribution_major_version >= "8"
- name: deploy dhcpd config
@ -19,4 +31,9 @@
name: dhcpd
enabled: yes
state: started
when: ansible_distribution_major_version == "7" and ansible_virtualization_type != "docker"
when:
- ansible_distribution == "CentOS"
- ansible_virtualization_type != "docker"
...