- remove tags from tasks - remove archlinux part - use debian default package for kea
13 lines
370 B
YAML
13 lines
370 B
YAML
---
|
|
- name: Setup Kea DHCP
|
|
block:
|
|
- name: Install Kea on Debian
|
|
when: ansible_facts['distribution'] == "Debian"
|
|
ansible.builtin.import_tasks: install_debian.yml
|
|
|
|
- name: Configure Kea
|
|
ansible.builtin.include_tasks: kea.yaml
|
|
|
|
- name: Run stork-agent tasks
|
|
when: kea_dhcp__stork_agent.enable
|
|
ansible.builtin.include_tasks: stork-agent.yaml
|