search for: pluginsinmodules

Displaying 3 results from an estimated 3 matches for "pluginsinmodules".

Did you mean: plugins_in_modules
2007 Nov 13
15
require metaparameter and gems
I tried to install the ''mongrel'' gem tonight via puppet in an attempt to migrate from webrick to mongrel as described on the puppet site[1]. I added the following to my manifest: package { "rubygems": ensure => installed; "mongrel": ensure => installed, provider => gem, require => Package["rubygems"]; }
2009 Jan 07
0
Re: Noob - What means "Cannot access mount[plugins]" ? [SOLVED]
...gt; > # allow *.example.com > > # deny *.evil.example.com > > # allow 192.168.0.0/24 > > You need to specify a path there. > > What it''s actually *used* for, I''m not at all clear. > > -Robin Hi, I read http://reductivelabs.com/trac/puppet/wiki/PluginsInModules with which what this was all about. Anyway, I changed puppet.conf to : [main] logdir=/var/log/puppet vardir=/var/lib/puppet ssldir=/var/lib/puppet/ssl rundir=/var/run/puppet factpath=$vardir/lib/facter #pluginsync=true ############# next line is the one added pluginsync=false server=panoramix.per...
2008 Dec 01
2
configuring puppet to run custom facts
Hi, I''m following http://reductivelabs.com/trac/puppet/wiki/PluginsInModules in order to use a custom fact. My modules looks like: # ls manifests/modules/network/ manifests plugins # ls manifests/modules/network/plugins/facter/primaryint.rb manifests/modules/network/plugins/facter/primaryint.rb as is said in doc. Then: Turn on pluginsync and specify factpath, so that...