From f219cf23feadcdbadd059cfd73657f060f3dd654 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 4 Jan 2015 01:51:37 +0300 Subject: [PATCH] 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 --- vars/{Debian.yml => Ubuntu.yml} | 0 web.yml | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename vars/{Debian.yml => Ubuntu.yml} (100%) diff --git a/vars/Debian.yml b/vars/Ubuntu.yml similarity index 100% rename from vars/Debian.yml rename to vars/Ubuntu.yml diff --git a/web.yml b/web.yml index 52b11f6..63be32e 100644 --- a/web.yml +++ b/web.yml @@ -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: