- Update prepare.yml with test setup - Update molecule.yml with test infrastructure configuration
11 lines
225 B
YAML
11 lines
225 B
YAML
---
|
|
- hosts: all
|
|
tasks:
|
|
- name: Update apt
|
|
ansible.builtin.apt:
|
|
update_cache: true
|
|
- name: Install bind9-dnsutils package
|
|
ansible.builtin.apt:
|
|
name: bind9-dnsutils
|
|
state: present
|