From f519817736a2c7490a9a417092ee4d22cfd6a3b3 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Fri, 8 May 2015 15:46:27 -0500 Subject: [PATCH] Updated cinder nfs variable name so that it'll work The variable was nfs_client but it needs to be cinder_nfs_client this commit renames that variable so that it'll function as expected. Change-Id: I09ab7eb2ed34237c41132596e998c7b24cd03f1f Closes-Bug: 1453271 --- playbooks/roles/os_cinder/templates/nfs_shares.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/roles/os_cinder/templates/nfs_shares.j2 b/playbooks/roles/os_cinder/templates/nfs_shares.j2 index 17fcf3b5b0..a421319b32 100644 --- a/playbooks/roles/os_cinder/templates/nfs_shares.j2 +++ b/playbooks/roles/os_cinder/templates/nfs_shares.j2 @@ -1,5 +1,5 @@ # {{ ansible_managed }} -{% for share in nfs_client.shares %} +{% for share in cinder_nfs_client.shares %} {{ share.ip }}:{{ share.share }} {% endfor %}