On Puppet 4.3.1 on CentOS 7, I tried setting up the following site.pp:
node /\.local$/ {
include commonhome
}
node 'default' {
}
No matter what other definitions I add or remove, I end up with the following errors when I try to apply it:
Error: Evaluation Error: Error while evaluating a Function Call, 'versioncmp' parameter 'a' expects a String value, got Undef at /etc/puppetlabs/code/environments/production/modules/smartd/manifests/params.pp:27:6 on node puppet.local
If I don't use any wildcard definitions, it works fine.
What am I doing wrong?
↧