Puppet 3.8.7,r10k 2.2.2,hiera 1.3.4,facter 2.4.6,
ini_setting { 'Configure environmentpath':section => 'main',setting => 'environmentpath',value => '$confdir/environments',ini_setting { 'Configure basemodulepath':section => 'main',setting => 'basemodulepath',value => '$confdir/modules:/opt/puppet/share/puppet/modules',
modulepath = modules:site:$basemodulepath
--
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...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/f1616846-fd59-4528-809f-316f5efa13d1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi Lowe,
Its just being defined in the default class, i have also tried using it as a class
‘''
## site.pp ## /etc/puppet/environments/production/manifests/site.pp
# This file (/etc/puppet/manifests/site.pp) is the main entry point
# used when an agent connects to a master and asks for an updated configuration.
#
# Global objects like filebuckets and resource defaults should go in this file,
# as should the default node definition. (The default node can be omitted
# if you use the console and don't define any other nodes in site.pp. See
# http://docs.puppetlabs.com/guides/language_guide.html#nodes for more on
# node definitions.)
## Active Configurations ##
# Disable filebucket by default for all File resources:
File { backup => false }
# DEFAULT NODE
# Node definitions in this file are merged with node data from the console. See
# http://docs.puppetlabs.com/guides/language_guide.html#nodes for more on
# node definitions.
# The default node definition matches any node lacking a more specific node
# definition. If there are no other nodes in this file, classes declared here
# will be included in every node's catalog, *in addition* to any classes
# specified in the console for that node.
node default {
# This is where you can declare classes for all nodes.
# Example:
# class { 'my_class': }
#class { 'apache': }
include apache
}
#
‘’'
Regards,
Luke
I ran 'puppet module list' and got the following./etc/puppet/environments/production/modules