From 6514b1ac8b4cc5b98085776546077cd588d0739e Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Mon, 12 Mar 2018 10:40:39 +0000 Subject: xci: OSA: Fix warning about missing inventory file This is similar to 346079ea1b8dbda0c5e282c18f30cbac7e907d1e ("xci: Fix warning about missing inventory file") This playbook only affects localhost so make it explicit. Fixes: [WARNING]: Host file not found: inventory [WARNING]: provided hosts list is empty, only localhost is available Change-Id: If8548a36498ea3191de33cff94acbaee6ed04ce3 Signed-off-by: Markos Chandras --- xci/installer/osa/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xci/installer/osa/deploy.sh b/xci/installer/osa/deploy.sh index 3c27fd79..6702b678 100755 --- a/xci/installer/osa/deploy.sh +++ b/xci/installer/osa/deploy.sh @@ -39,7 +39,7 @@ fi echo "Info: Configuring localhost for openstack-ansible" echo "-----------------------------------------------------------------------" cd $XCI_PLAYBOOKS -ansible-playbook ${XCI_ANSIBLE_PARAMS} -i inventory configure-localhost.yml +ansible-playbook ${XCI_ANSIBLE_PARAMS} -i "localhost," configure-localhost.yml echo "-----------------------------------------------------------------------" echo "Info: Configured localhost host for openstack-ansible" -- cgit 1.2.3-korg