我正在尝试运行此 Puppet 代码,如Puppet 文档中所述:
# test.pp
$a = [1, 2, 3]
$b = $a.collect |$x| { $x + 1 }
alert $b
但它给了我语法错误:
$ puppet parser validate --debug test.pp
Error: Could not parse for environment production: Syntax error at '.' at /tmp/test.pp:3
Error: Try 'puppet help parser validate' for usage
$ puppet --version
3.1.1
请指出正确的方法。