Hi,
I am the deploying the puppet master rpm 3.4.2 onto a centos 6.3 VM using the following script files but output reports the error 'Report processor failed: uninitialized constant Puppet::FileSystem::File', has anyone seen this error?
****** SITE.pp ***********
import "nodetypes/*.pp"
Exec { path => "/bin:/sbin:/usr/bin:/usr/sbin" }
node 'TEST-PM4.com'
{
class {'puppetmaster' : }
}
node default {
}
# Filebuckets
filebucket { main: server => puppet }
filebucket { local: path => "/var/lib/puppet/clientbucket" }
class main {
}
******** puppet master manifest ********
class puppetmaster {
class { 'my-puppetmaster' : }
}
******* my-puppetmaster module *******
class my-puppetmaster {
$packages = [ 'puppet-server'
]
package { $packages:
ensure => installed,
}
}
When I create the puppetmaster, the output finished with an error (as highlighted below). Has anyone else seen this Error? I have not spotted any problems from it, but it would be great if someone could share what the problem is?
[ro...@TEST-PM4.com puppet]# puppet apply manifests/site.pp
Notice: Compiled catalog for TEST-PM4.com in environment production in 1.00 seconds
Notice: /Stage[main]/my-puppetmaster/Package[puppet-server]/ensure: created
Notice: Finished catalog run in 5.35 seconds
Error: Report processor failed: uninitialized constant Puppet::FileSystem::File