ansible: fix urlsplit('hostname') in convert_openrc 45/52845/2
authorRoss Brattain <ross.b.brattain@intel.com>
Wed, 28 Feb 2018 15:39:43 +0000 (07:39 -0800)
committerRoss Brattain <ross.b.brattain@intel.com>
Wed, 28 Feb 2018 15:53:12 +0000 (15:53 +0000)
can't use urlsplit|attr('hostname') since urlsplit is a dict

should instead use urlsplit('hostname')

Change-Id: I272cac785c2336891b43b81ecf10370af8be228b
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
ansible/roles/convert_openrc/tasks/main.yml

index be621f0..00aa136 100644 (file)
@@ -18,7 +18,7 @@
 - debug: var=openrc
 
 - set_fact:
-    yardstick_url_ip: "{{ openrc.OS_AUTH_URL|urlsplit|attr('hostname') }}"
+    yardstick_url_ip: "{{ openrc.OS_AUTH_URL|urlsplit('hostname') }}"
 
 - debug: var=yardstick_url_ip