Fix mis-use of config_template in docker tasks

As written, generating the config file for ceph-mon in Docker yielded:

ERROR: config_template is not a legal parameter in an Ansible task or
handler

This fixes that error condition.
pull/683/head
Chris St. Pierre 2016-04-05 12:09:09 -05:00
parent 0bf9a02676
commit 1a73d55bae
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@
mode: 0644
- name: generate ceph configuration file
config_template:
action: config_template
args:
src: "{{ playbook_dir }}/roles/ceph-common/templates/ceph.conf.j2"
dest: /etc/ceph/ceph.conf
owner: "root"