Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图跳过在某些没有因子值的节点上运行的模块,例如“FACTER_dev_boxes = true”。如何使用 init.pp 中的条件语句来做到这一点?
感谢您对此的建议!
对于初学者,这里是条件的指南
此外,由 facter 发现的事实作为Puppet 中的顶级范围变量提供
因此,以下简单的事情应该可以工作:
if $dev_boxes == 'true' { // Run your module }