Move Debian.yml vars to Ubuntu.yml

I was using ansible_os_family to get settings for Debian-family
hosts, but this doesn't work so well when you have an apt_mirror
which is only Debian or Ubuntu, for example.

I don't have any Debian hosts here, but anyways, it's better this
way so I can be more flexible in the future.

Signed-off-by: Alan Orth <alan.orth@gmail.com>
This commit is contained in:
Alan Orth 2015-01-04 01:51:37 +03:00
parent 55b1362f54
commit f219cf23fe
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
2 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@
vars_files:
- vars/ipsets.yml
- vars/provisioning.yml
- "vars/{{ ansible_os_family }}.yml"
- "vars/{{ ansible_distribution }}.yml"
# vim: set sw=2 ts=2: