Re: [Puppet Users] How to solve $concat_basedir not defined error?

2015-01-05 Thread Pete Brown
I just had a look at the docs and pluginsync needs to be set to true in the [main] of Both the master and the client. https://docs.puppetlabs.com/guides/plugins_in_modules.html#enabling-pluginsync It is on by default in puppet 3+ The default was false in earlier versions. On 15 December 2014 at

Re: [Puppet Users] How to solve $concat_basedir not defined error?

2014-12-15 Thread Pete Brown
Where did you set pluginsync = true? It needs to be in the master section of the puppet.conf on your puppet master. Which version of puppet, facter, hiera and the concat module are you using? On 13 December 2014 at 08:26, Haani Niyaz haani.ni...@gmail.com wrote: Thanks for the info. `facter

Re: [Puppet Users] How to solve $concat_basedir not defined error?

2014-12-15 Thread Martin Alfke
AFAIK pluginsync needs to be set on the agents. On the Master you need to install the module - puppet module install puppetlabs/concat On the agent you need at least one puppet agent run to synchronize the required concat scripts. If you run in hoop mode only, concat will always fail due to

[Puppet Users] How to solve $concat_basedir not defined error?

2014-12-12 Thread Haani Niyaz
Hi there, I'm fairly new to puppet I am attempting to setup a dashboard for puppetdb. I came across puppetexplorer and wanted to trial it out. I attempted to install puppetexplorer by doing the following: puppet module install spotify-puppetexplorer #Added puppetexplorer to my puppet node

Re: [Puppet Users] How to solve $concat_basedir not defined error?

2014-12-12 Thread Hunter Haugen
The concat_basedir custom fact comes from the concat module https://forge.puppetlabs.com/puppetlabs/concat so on the agent, if you can run `facter concat_basedir` then puppet should be able to pick it up. It looks like you do have the concat module installed at /etc/puppet/modules/concat, and if

Re: [Puppet Users] How to solve $concat_basedir not defined error?

2014-12-12 Thread Haani Niyaz
Thanks for the info. `facter concat_basedir` returns empty. `puppet plugin download` returns 'no plugins downloaded.' On Saturday, 13 December 2014 06:27:55 UTC+11, Hunter Haugen wrote: The concat_basedir custom fact comes from the concat module