我在我的一个流浪项目中使用 puppet 作为我的供应商。我正在尝试为自定义 bash_profile 添加一个模块。
module_path
for puppet 设置为:
puppet.module_path = "puppet/modules"
我的 bash_profile 模块的类如下所示:
class bash_profile
{
file
{
"/home/vagrant/bash_profile":
ensure => present,
source => "puppet:///modules/bash_profile/files/bash_profile"
}
}
这是我的木偶结构的文件结构:
puppet
| manifests
| | phpbase.pp // my main manifest file that has includes for modules
| modules
| | bash_profile
| | | files
| | | | bash_profile // the actual bash_profile file I want to ensure is present on my VM
| | | manifests
| | | | init.pp // the init file included for the bash_profile class
当我为 vagrant 运行配置时,出现错误
错误:/Stage[main]/Bash_profile/File[/home/vagrant/bash_profile]:无法评估:无法从 /tmp 的环境生产源 puppet:///modules/bash_profile/files/bash_profile 检索信息/vagrant-puppet-1/modules-0/bash_profile/manifests/init.pp:8
我不确定为什么它无法检索信息。路径似乎是正确的。谁能看到我错过了什么?