From 3966199e412ae6c8390595e8fa1a76d4e8b9d117 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 --- templates/nfs_shares.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/nfs_shares.j2 b/templates/nfs_shares.j2 index 17fcf3b5..a421319b 100644 --- a/templates/nfs_shares.j2 +++ b/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 %}