From 0b7afadb50b7b471c1fe7d93f76f7a3a92a007a5 Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Wed, 16 May 2018 20:30:39 +0200 Subject: Bug fix: initialize ODL_VERSION When doing the ansible lookup, if the variable does not exist, an empty string is returned. That is a bug which must be fixed: https://github.com/ansible/ansible/issues/17329 Until then, we initialize the variable Change-Id: I92c43d15559600ff1583e1560c032377dc22793c Signed-off-by: Manuel Buil --- scenarios/os-odl-nofeature/role/os-odl-nofeature/vars/main.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 scenarios/os-odl-nofeature/role/os-odl-nofeature/vars/main.yml (limited to 'scenarios/os-odl-nofeature/role') diff --git a/scenarios/os-odl-nofeature/role/os-odl-nofeature/vars/main.yml b/scenarios/os-odl-nofeature/role/os-odl-nofeature/vars/main.yml new file mode 100644 index 0000000..629b50c --- /dev/null +++ b/scenarios/os-odl-nofeature/role/os-odl-nofeature/vars/main.yml @@ -0,0 +1,2 @@ +--- +odl_repo_version: "{{ lookup('env','ODL_VERSION') }}" -- cgit 1.2.3-korg