mirror of https://github.com/ceph/ceph-ansible.git
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
parent
0bf9a02676
commit
1a73d55bae
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue