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
This commit is contained in:
James Slagle 2018-09-21 14:57:28 -04:00
parent b76a36eca1
commit 538c894317
1 changed files with 3 additions and 3 deletions

View File

@ -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}