Still wrestling with this.  Puppet is now seeing 'part' of the module paths 
but not all of them, one thing I had to change was using an absolute path 
and not '$confdir' and it's not using the correct site.pp file 
"non-prod_site.pp"

[ ~ ]# puppet config print --environment test |grep env
environment_timeout = 0
modulepath = /etc/puppet/environments/test/modules
:/etc/puppet/modules:/usr/share/puppet/modules
environment = test
environmentpath = /etc/puppet/environments
disable_per_environment_manifest = false

[ ~ ]# puppet config print --environment test |grep mani
manifest = /etc/puppet/manifests/site.pp
default_manifest = /etc/puppet/manifests/site.pp
genmanifest = false
manifestdir = /etc/puppet/manifests
disable_per_environment_manifest = false

[TEST] - environments.conf
[ ~ ]# cat /etc/puppet/environments/environments.conf
---------------------------------
 # manifest = $confdir/manifests/non-prod_site.pp
 manifest = /etc/puppet/manifests/non-prod_site.pp
 # modulepath = 
$confdir/environments/test/modules:$confdir/environments/test/site/modules
 modulepath = 
/etc/puppet/environments/test/site/modules:/etc/puppet/environments/test/modules

Again, thank you for all advice.

--Jim


Hi all,
>
> Just upgraded from 3.4.something to 3.7.5 and it seems how we were doing 
> environments is depreciated.  I've followed a couple of docs* for how to do 
> this but seem to be missing something. Nodes can't seem to find modules.  
> For now it's not a big deal because it's just a warning but I'd like to 
> address the issue.
>
> *http://docs.puppetlabs.com/puppet/latest/reference/environments.html 
> (and linked docs)
>
> Here's the old config values in /etc/puppet/puppet.conf for environments:
>
> [main]
> ....
> ....
>     modulepath = /etc/puppet/modules
> ...
> ...
> ...
>     environment = production
>     confdir = /etc/puppet
>
> [production]
>     manifest = $confdir/manifests/site.pp
>     modulepath = 
> $confdir/environments/production/modules:$confdir/environments/test/site/modules
>
> [test]
>     manifest = $confdir/manifests/non-prod_site.pp
>     modulepath = 
> $confdir/environments/test/modules:$confdir/environments/test/site/modules
>
> [development]
>     manifest = $confdir/manifests/non-prod_site.pp
>     modulepath = 
> $confdir/environments/dev/modules:$confdir/environments/dev/site/modules
>
>
>
> PROPOSED:
> [main]
> ....
> ....
>     # modulepath = /etc/puppet/modules
>     environmentpath = $confdir/environments
>     default_manifest = /etc/puppet/manifests/site.pp
> ...
> ...
> ...
>     # environment = production
>     confdir = /etc/puppet
>
> # [production]
> #     manifest = $confdir/manifests/site.pp
> #     modulepath = 
> $confdir/environments/production/modules:$confdir/environments/test/site/modules
>
> # [test]
> #    manifest = $confdir/manifests/non-prod_site.pp
> #    modulepath = 
> $confdir/environments/test/modules:$confdir/environments/test/site/modules
>
> # [development]
> #     manifest = $confdir/manifests/non-prod_site.pp
> #     modulepath = 
> $confdir/environments/dev/modules:$confdir/environments/dev/site/modules
>
>
> Environments.conf
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> Environments.conf for production:
> manifest = $confdir/manifests/site.pp
> modulepath = 
> $confdir/environments/production/modules:$confdir/puppet/environments/production/site
>
> Environments.conf for testing:
> manifest = $confdir/manifests/non-prod_site.pp
> modulepath = 
> $confdir/environments/test/modules:$confdir/environments/test/site/modules
>
> Environments.conf for dev:
> manifest = $confdir/manifests/non-prod_site.pp
> modulepath = 
> $confdir/environments/dev/modules:$confdir/environments/dev/site/modules
>
>
> Nodes .pp settings for each environment
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> $puppet_env = "production"
>
> $puppet_env = "test"
>
> $puppet_env = "development"
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/7548d542-a0c1-4978-8604-d89908b79a68%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to