blob: e6b92bf5d60112226cf81e50d125f0f46a8730a6 [file] [log] [blame]
---
# dhcpd molecule/default/prepare.yml
#
# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
# SPDX-License-Identifier: Apache-2.0
- name: Prepare
hosts: all
tasks:
- name: Update apt cache
apt:
update_cache: true
- name: Install ps command for Debian init.d script to function
apt:
name:
- "procps"
state: "present"
- name: Create a bridge to nowhere so dhcpd can start during testing
when: "'bridge0' not in ansible_interfaces"
command:
cmd: "{{ item }}"
with_items:
- "ip link add bridge0 type bridge"
- "ip addr add 192.168.0.5/24 dev bridge0"
- "ip link set bridge0 up"