From ce60ac19d85c8111413952776df21fe2946cd284 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Tue, 6 Dec 2016 09:58:32 +0000 Subject: [PATCH] Gather facts before running first role requiring them The pip_install role is using variables requiring facts to be present. The best way to fix this issue is to gather_facts in the bootstrap-aio playbook. Change-Id: Idfbcf54faa90013d229b415463ce664dbda7f334 Closes-Bug: 1647481 --- tests/bootstrap-aio.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/bootstrap-aio.yml b/tests/bootstrap-aio.yml index 059fcb7464..f934409a79 100644 --- a/tests/bootstrap-aio.yml +++ b/tests/bootstrap-aio.yml @@ -15,6 +15,7 @@ - name: Bootstrap the All-In-One (AIO) hosts: localhost + gather_facts: True user: root roles: - role: "sshd"