1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Update named.yml

This commit is contained in:
A Holt 2018-10-28 12:07:44 -04:00 committed by GitHub
parent e101d2f42c
commit 1b1744c2b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,21 +1,19 @@
- name: Install named packages (if debuntu)
- name: Install named packages {bind9, bind9utils} (if debuntu)
package:
name: "{{ item }}"
name:
- bind9
- bind9utils
state: present
with_items:
- bind9
- bind9utils
when: is_debuntu
tags:
- download
- name: Install named packages (if not debuntu)
- name: Install named packages {bind, bind-utils} (if not debuntu)
package:
name: "{{ item }}"
name:
- bind
- bind-utils
state: present
with_items:
- bind
- bind-utils
when: not is_debuntu
tags:
- download