我正在尝试制作一个 puppet 模块,它将用/var/www/
我的 git 存储库中的索引文件覆盖默认的 index.file(apaceh2 附带)。我正在使用 puppet 插件 Vcsrepo 来克隆存储库。
vcsrepo { "/var/www/":
provider => git,
source => "git@git.*****/testing.git",
identity => '/root/.ssh/id_rsa',
require => Package['git'],
}
我现在收到此错误:
Error: /Stage[main]/Web::Repository/Vcsrepo[/var/www/]: Could not evaluate: undefined method `include?' for nil:NilClass
我已经尝试过force=>"true"
,但没有设法解决问题。