mirror of https://github.com/ceph/ceph-ansible.git
nfs: fix undefined variable
This is what happens when you don't run all the jobs from the CI... Signed-off-by: Sébastien Han <seb@redhat.com>pull/1941/head
parent
839bc11df0
commit
64824baa83
|
@ -6,7 +6,7 @@
|
|||
- containerized_deployment
|
||||
|
||||
- name: create rgw nfs user
|
||||
command: "{{ docker_exec_cmd_nfs }} radosgw-admin --cluster {{ cluster }} user create --uid={{ ceph_nfs_rgw_user }} --display-name='RGW NFS User'"
|
||||
command: "{{ docker_exec_cmd_nfs | default([]) }} radosgw-admin --cluster {{ cluster }} user create --uid={{ ceph_nfs_rgw_user }} --display-name='RGW NFS User'"
|
||||
register: rgwuser
|
||||
delegate_to: "{{ groups[mon_group_name][0] }}"
|
||||
when:
|
||||
|
|
Loading…
Reference in New Issue