Puppet 3.0:我是否应该能够从另一个模块的类似名称的子类调用一个模块?

Puppet 3.0:我是否应该能够从另一个模块的类似名称的子类调用一个模块?

我有一个名为的模块drbd,需要在另一个名为的模块中使用它hacluster。最初,我想将 drbd 的内容隔离在它自己的类中,如下所示:

modules/drbd/[stuff]                # this is the DRBD module
modules/hacluster/manifests/init.pp # class hacluster { include hacluster::drbd }
modules/hacluster/manifests/drbd.pp # class hacluster::drbd

该类hacluster::drbd安装并配置DRBD如下:

class hacluster::drbd {
    class { 'drbd':
        service_ensure => undef,
        service_enable => false,
    }
    class { 'drbd::global_common':
        ...more stuff...
    }
    drbd::resource {'r0': ...stuff...}
    drbd::resource {'r1': ...stuff...}
}

...但是 Puppet 不喜欢我从 hacluster::drbd 类内部调用 drbd 模块:

Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Duplicate declaration: Class[Hacluster::Drbd] is already declared; cannot redeclare on node mynode.blabla

我通过将类从 重命名为 轻松修复了这个问题hacluster::drbdhacluster::drbdx但我仍然想知道是否有办法从不同模块中包含的同名子类调用模块。我确实阅读了文档,但找不到明确的答案。

答案1

Puppet 更倾向于当前命名空间 ( ) 中的类hacluster::,而不是返回根目录并从那里进行解析。语言参考中有一个很好的描述命名空间和自动加载

::解决方案是在类名前明确引用顶级命名空间:

class { '::drbd':
    service_ensure => undef,
    service_enable => false,
}

相关内容