blob: 311b712bff65c0b9af71942665918a1c132017b0 [file] [log] [blame]
Zack Williams13644cc2020-08-30 15:16:43 -07001---
2# nsd molecule/default/prepare.yml
3#
4# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
5# SPDX-License-Identifier: Apache-2.0
6
7- name: Prepare
8 hosts: all
9
10 tasks:
11 - name: Add dnsutils so dig works in tests
12 apt:
13 name: "dnsutils"
14 state: "present"
15 update_cache: true