how did this EVER work?

This commit is contained in:
Seth Vidal 2013-05-29 22:15:50 +00:00
parent 70baa0dc9e
commit 9d1fa6f2ab

View file

@ -109,19 +109,19 @@
# XXX fixme # a datacenter 'fact' from setup # XXX fixme # a datacenter 'fact' from setup
- name: /etc/resolv.conf - name: /etc/resolv.conf
action: copy src=$resolvconf dest=/etc/resolv.conf action: copy src=$item dest=/etc/resolv.conf
with_first_found: with_first_found:
- $resolvconf - ${resolvconf}
- $files/resolv.conf/${ansible_fqdn} - $files/resolv.conf/${ansible_fqdn}
- $files/resolv.conf/${host_group} - $files/resolv.conf/${host_group}
- $files/resolv.conf/${datacenter} - $files/resolv.conf/${datacenter}
- $files/resolv.conf/resolv.conf - $files/resolv.conf/resolv.conf
tags: tags:
- config - config
- resolvconf - resolvconf
- name: rsyslog.conf - name: rsyslog.conf
action: copy src=$rsyslogconf dest=/etc/rsyslog.conf mode=644 action: copy src=$item dest=/etc/rsyslog.conf mode=644
with_first_found: with_first_found:
- $rsyslogconf - $rsyslogconf
- $files/rsyslog/rsyslog.conf.${ansible_fqdn} - $files/rsyslog/rsyslog.conf.${ansible_fqdn}