From e7a06ed55aeac0c09e09bbdade010b9c45c855ce Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 16 Sep 2016 23:45:36 +0200 Subject: [PATCH] Remove basemodulepath from environment config We want the env specific modules to be used first then fall back onto the normal base module path for any modules missing from the environment. This means you can test local changes without having a complete set of modules in your env. Change-Id: I2f0311400a8cf76b9793f50453e818ed4dd7e5a2 --- templates/environment.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/environment.conf.j2 b/templates/environment.conf.j2 index 7726473..bbdf964 100644 --- a/templates/environment.conf.j2 +++ b/templates/environment.conf.j2 @@ -1 +1 @@ -modulepath = '{{ puppet_basemodulepath }}:{{ puppet_environment_basedir }}{{ puppet_environment }}/modules' +modulepath = '{{ puppet_environment_basedir }}{{ puppet_environment }}/modules'