Fix typo in nova external ceph

Nova external ceph task have a type which break deployment.
State module not present, the module used should be stat.

Change-Id: Ie8a0b30f44fc35a597334383a85353d324e765cd
Closes-Bug: #1671526
This commit is contained in:
Eduardo Gonzalez 2017-03-09 16:54:30 +00:00
parent 8749ca2dd1
commit 07a8c47f33

@ -14,7 +14,7 @@
failed_when: not nova_cephx_keyring_file.stat.exists
- name: Check cinder keyring file
local_action: state path="{{ node_custom_config }}/nova/ceph.client.cinder.keyring"
local_action: stat path="{{ node_custom_config }}/nova/ceph.client.cinder.keyring"
register: cinder_cephx_keyring_file
failed_when: not cinder_cephx_keyring_file.stat.exists
when: cinder_backend_ceph | bool