我是木偶的新手,并计划在我们的环境中实施它。
我有在不同版本的Redhat上运行的木偶代理。
现在,我正计划从木偶大师那里推送回购文件,我需要你的指导才能实现相同的目标。
我有以下清单。
file { 'local_repo':
ensure => file,
path => '/etc/yum.repos.d/local.repo',
mode => "600",
source => 'puppet:///modules/repo/rhel7.1',
}
file { 'local_repo':
ensure => file,
path => '/etc/yum.repos.d/local.repo',
mode => "600",
source => 'puppet:///modules/repo/rhel6.7',
}
当我执行Facter CLI时,我得到以下输出。
[root@dheera ~]# facter os
{
architecture => "x86_64",
family => "RedHat",
hardware => "x86_64",
name => "RedHat",
release => {
full => "7.2",
major => "7",
minor => "2"
}
}
我想利用上面的输出并相应地执行我的清单。也就是说,如果木偶代理在Redhat 7.1上执行,那么Puppet master使用相应的文件。
答案 0 :(得分:4)
您可以使用source
属性中的Facter变量,然后在字符串中插入它来完成此操作。请注意,您的'
必须更改为"
才能在字符串中插入变量。
Facter 2 / Puppet 3:
file { 'local_repo':
ensure => file,
path => '/etc/yum.repos.d/local.repo',
mode => "600",
source => "puppet:///modules/repo/rhel${::os['release']['full']}",
}
Facter 3 / Puppet 4:
file { 'local_repo':
ensure => file,
path => '/etc/yum.repos.d/local.repo',
mode => "600",
source => "puppet:///modules/repo/rhel${facts['os']['release']['full']}",
}
您可以在此处找到有用的文档:https://docs.puppet.com/puppet/4.8/reference/lang_facts_and_builtin_vars.html
适用于最新版本,但也包含旧版Puppet / Facter信息。