From 538c8943172e1a5a81f3141d03422ae36558b961 Mon Sep 17 00:00:00 2001 From: James Slagle Date: Fri, 21 Sep 2018 14:57:28 -0400 Subject: [PATCH] Name unnamed tasks These tasks had an empty name field, which breaks ansible's --start-at-task functionality with a traceback, as it's not valid to have unnamed tasks. Change-Id: I2386da62a87bfc290070fce13c2d35290565478a --- puppet/services/glance-api.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/puppet/services/glance-api.yaml b/puppet/services/glance-api.yaml index 753a592c0e..362faa47ef 100644 --- a/puppet/services/glance-api.yaml +++ b/puppet/services/glance-api.yaml @@ -347,10 +347,10 @@ outputs: vars: netapp_nfs_backend_enable: {get_param: GlanceNetappNfsEnabled} block: - - name: + - name: Set glance remote_file_path fact set_fact: remote_file_path: /etc/glance/glance-metadata-file.conf - - name: + - name: Create glance remote_file_path file: path: "{{ remote_file_path }}" state: touch @@ -363,7 +363,7 @@ outputs: - NETAPP_SHARE: {get_param: NetappShareLocation} when: - file_path.stat.exists == true - - name: + - name: Mount glance Netapp share mount: name=/var/lib/glance/images src="{{item.NETAPP_SHARE}}" fstype=nfs4 opts="{{item.NFS_OPTIONS}}" state=mounted with_items: - NETAPP_SHARE: {get_param: NetappShareLocation}