gpt4 book ai didi

mysql - 对于这个例子,我将如何在 Puppet 中使用嵌套类?

转载 作者:行者123 更新时间:2023-11-29 01:55:59 25 4
gpt4 key购买 nike

我正在尝试从 forge 为 puppet 安装 mysqltuner,已经正确安装了 mysql 模块,但我不太了解类的行为。示例如下:

class drupal::db {

class { '::mysql::server':

# how would i access to ::mysql::server::mysqltuner???
# how do i should nest to make it work???
# how can i access the subclass of server "mysqltuner"??? what connector should i use???, I know it like some kind of path to the subclass.
# Which is the magic connector????
# Class Tested It works
# ::mysql::server::mysqltuner No
# ::mysqltuner No
# mysqltuner No
class { '::mysql::server::mysqltuner':
ensure => present
}
}

class { '::mysql::client':
...
}
}

我尝试了很多方法,但都没有用。我必须使用我自己的 cfg 文件,我需要加载 mysqltuner 以便它与我的文件一起使用。我非常感谢该主题中的任何答案。

亲切的问候。

拉米罗

最佳答案

你想多了。 mysql::server::mysqltuner 不是嵌套类。它只是一个代表mysql::server意义的名称。

尝试

include ::mysql::server
include ::mysql::server::mysqltuner

如果不需要,通常应避免使用 class { '::mysql::server': } 语法。

关于mysql - 对于这个例子,我将如何在 Puppet 中使用嵌套类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29288453/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com