aboutsummaryrefslogtreecommitdiffstats
path: root/roles/space_server/tasks/dhcpd.yml
blob: cd09a04a5bcaa9a00e713dcecf401da28e59e722 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
- name: Install dhcpd package
  dnf:
    name: dhcp-server
    state: present
  tags:
  - packages

- name: Configure dhcpd
  template:
    dest: '/etc/dhcp/dhcpd.conf'
    src: dhcpd/dhcpd.conf.j2
    owner: root
    group: root
    mode: 0644
  notify:
  - restart dhcpd

- name: Enable dhcpd service
  systemd:
    name: dhcpd.service
    enabled: yes
    masked: no
    state: started
  when: not chroot
- name: '- when in chroot'
  command: systemctl enable dhcpd.service
  args:
    creates: '/etc/systemd/system/multi-user.target.wants/dhcpd.service'
  when: chroot

# vim: set ts=2 sw=2 et: