Displaying 1 result from an estimated 1 matches for "usecolors".
Did you mean:
use_colors
2007 Nov 08
1
Parity between native types and defined types
...e.
When I try to do this, instead (in a file named backup_ninja::config.rb):
Puppet::Type.newtype(''backup_ninja::config'') do
...
end
and this in site.pp:
node ''hussy'' {
backup_ninja::config { ''/tmp/bn.conf'':
loglevel => 3,
usecolors => false,
reportemail => "mpalmer@hussy.hezmatt.org"
}
}
I get the world''s *weirdest* error:
err: Puppet::Parser::AST::ResourceDef failed with error NameError: wrong
constant name Backup_ninja::config at site.pp:6
Is anyone namespacing native types? Should I be...