关于 ruby??:Puppet 不处理文件资源的源属性中的方括号

Puppet not handling squared brackets in the source attribute for file resource

当我尝试通过复制文件夹并使其递归来复制 git 安装文件时,我仍然面临这个问题。有一个名为 [.exe 的文件,它失败了:

Error: /Stage[main]/Tcagents/File[Copy Team City agent tools]: Failed to generate additional resources using 'eval_generate': Parameter source failed on File[D:/TeamCityTools/git-2.5.0/usr/bin/[.exe]: Could not understand source puppet:///tools/TeamCityTools/git-2.5.0/usr/bin/[.exe: bad URI(is not URI?): puppet:///tools/TeamCityTools/git-2.5.0/usr/bin/[.exe`

在阅读其他请求时,我看到这是由于 Puppet 用于验证路径的 URI 库。我还在 https://tickets.puppetlabs.com/browse/PUP-3135 中发现了同样的问题,但它在没有解决方案的情况下被接受。

我想知道是否有您推荐的解决方法或解决此问题的方法。使用 Puppet 4.4.2.

资源是:

1
2
3
4
5
6
file{'Copy Team City agent tools':
    ensure => directory,
    path => $tc_tools_path,
    source => 'puppet:///tools/TeamCityTools',
    recurse => true,
}


Puppet 仍未解决此问题 (https://tickets.puppetlabs.com/browse/PUP-3135)。