0.1.0-DEV-20200212-80132
------------------------ * INITIAL: - initial repo commit
This commit is contained in:
20
tasks/main.yml
Normal file
20
tasks/main.yml
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
# tasks file for zen_dhcpd
|
||||
- name: install dhcpd package
|
||||
yum: name=dhcp state=present
|
||||
|
||||
|
||||
- name: deploy dhcpd config
|
||||
template:
|
||||
src: templates/dhcpd_conf.j2
|
||||
dest: "/etc/dhcp/dhcpd.conf"
|
||||
mode: 0644
|
||||
notify: restart dhcpd
|
||||
|
||||
|
||||
- name: enable/start dhcpd
|
||||
service:
|
||||
name: dhcpd
|
||||
enabled: yes
|
||||
state: started
|
||||
when: ansible_distribution_major_version == "7" and ansible_virtualization_type != "docker"
|
Reference in New Issue
Block a user