From c5b5ba2c4270d5b88f4357513f643d74d2cef5ce Mon Sep 17 00:00:00 2001 From: Yolanda Robla Date: Thu, 18 Feb 2016 15:41:08 +0100 Subject: [PATCH] Instruct puppet to configure settings before applying In a clean deploy of infra cloud, the puppet environment is not configured from scratch. That will prevent puppet to run because it won't find the /opt/system-config/production/modules. The config option of the ansible role will configure properly all settings before trying to apply it, and things will work properly. Change-Id: I736e10623fb3ba90b3320cc20758a18c70930be0 Depends-On: I6cb8dff569f2cca8bca7359412d01cc7ec009c54 --- playbooks/remote_puppet_infracloud.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playbooks/remote_puppet_infracloud.yaml b/playbooks/remote_puppet_infracloud.yaml index 7da639e4ef..548414725c 100644 --- a/playbooks/remote_puppet_infracloud.yaml +++ b/playbooks/remote_puppet_infracloud.yaml @@ -4,7 +4,9 @@ gather_facts: true roles: - role: puppet + config: true - hosts: "compute*.ic.openstack.org:!disabled" gather_facts: true roles: - role: puppet + config: true