我安装了一个名为的 puppet 模块ntp
。
我定义节点为
node testip { include myconfig::ntpp }
我/etc/puppet/modules/myconfig/manifests/init.pp
有
class myconfig::ntpp {
include common
class {'ntp':
server_list => $common::data::ntpServerList
}
}
这非常有效。
但如果我替换myconfig::ntpp
为myconfig::ntp
Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Duplicate declaration: Class[Myconfig::Ntp] is already declared; cannot redeclare on node testip
问题
我的节点有可能看起来像这样吗?:
node testip { include myconfig::ntp }