Displaying 1 result from an estimated 1 matches for "blahwin".
Did you mean:
baldwin
2013 Feb 11
3
Error: Could not find class <class> for <host> on node <host>
...atter what I''ve attempted, the Puppet Master is not able to find the class
definition. I started out having my classes in separate .pp files, but I''m
currently just trying to define them in init.pp. Here''s my current simple
example that is failing:
*init.pp*
class blahwin {
file { ''harris2.txt'':
path => ''c:/temp/harris2.txt'',
ensure => file,
}
}
class blah {
file { ''harris3.txt'':
path => ''/tmp/harris3.txt'',
ensure => file,
}
}
*site.pp*...