You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
468 B
20 lines
468 B
2 years ago
|
- name: Bind9 Server Setup
|
||
|
hosts: bind
|
||
|
tasks:
|
||
|
- name: Performing APT cache update and package upgrade
|
||
|
apt:
|
||
|
upgrade: yes
|
||
|
update_cache: yes
|
||
|
cache_valid_time: 86400
|
||
|
- name: Verifying dependencies
|
||
|
ansible.builtin.package:
|
||
|
name:
|
||
|
- bind9
|
||
|
- bind9-utils
|
||
|
- bind9-dnsutils
|
||
|
- software-properties-common
|
||
|
- net-tools
|
||
|
- mlocate
|
||
|
- vim
|
||
|
state: latest
|