从puppetserver uri读取文件内容

时间:2015-10-16 00:22:45

标签: puppet

我知道我可以使用

读取文件的内容
$var = file("some_path)

在木偶中,但是当我尝试传递一个木偶文件服务器uri的路径时,它似乎无法找到它。是否有可能在傀儡4.2.2中做到

$var = file("puppet:///...")

1 个答案:

答案 0 :(得分:1)

没有。 puppet://样式网址仅对source类型的file属性有意义。

file { '/etc/my_custom_config':
    source => 'puppet:///modules/my_custom_module/etc/my_custom_config'
}