summaryrefslogtreecommitdiff
path: root/roles/install_dhcp/tasks/main.yml
blob: 60cac0678658168e9660d12d2d15bd434c8de535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- name: install dhcp
  pacman:
      name: dhcp
      state: present

- name: create dhcp file for static ips
  file:
      path: /etc/dhcpd.hosts.conf
      state: touch

- name: dhcpd.conf
  template:
      src: dhcpd.conf.j2
      dest: /etc/dhcpd.conf