我已经编写了一个 puppet 的模块,我想将它与 hiera 一起使用以进行简单的管理。我的问题是我无法将真正的参数传递给木偶的模板。
这是我的模板文件:
<%= @master %> // for test, show always 'false'
<% if @master -%>
hiera_config=$confdir/hiera.yaml
certname=puppet
dns_alt_names=puppetServer,puppet,puppet.xxx.net
<% end -%>
Hiera.yaml:
---
:backends:
- yaml
:yaml:
:datadir: /etc/puppet/hieradata
:hierarchy:
- "%{environment}" # test, production, etc.
- "common"
- "os/%{operatingsystem}"
- "nodes/%{::fqdn}" # spécifique par client
PuppetServer.local.xxx.net:
---
classes:
- common_xxx
common_xxx::master: true
common_xxx/manifests/init.pp:
class common_xxx
(
### Variable de classe ###
$module_files = "puppet:///modules/$module_name",
$master = false,
){
我将 true/false 参数与另一个模块(wdijkerman 的 zabbix)一起使用,它工作正常。我不知道为什么它在这里不起作用。你有没有看到我犯的一些错误?
谢谢你。