我已经在 centos 7 上安装了 puppet enterprise 3.7.2。Puppet master 和 agent 都在工作。我可以从 puppet Enterprise Console 和附加的屏幕截图中查看节点。
我在 puppet 服务器上创建了包含以下内容的清单文件 /etc/puppetlabs/puppet/manifests/node.pp。
node 'puppet.client.net' {
file { '/tmp/hello':
content => "Hello, world\n",
}
}
在master上执行以下命令后:
#puppet agent apply nodes.pp
然后在客户端节点上执行以下命令:
#puppet agent -t
Info: Retrieving pluginfacts
Info: Retrieving plugin
Info: Loading facts
Info: Caching catalog for puppet.client.net
Info: Applying configuration version '1424179235'
Notice: Finished catalog run in 2.12 seconds
Puppet 节点不会从 master 中选择任何更改。