我正在使用带有 YAML 后端的 hiera 来管理我的 Puppet 配置,并且我想将一些值附加到数组中。
我有一个看起来有点像这样的配置文件:
---
some_config:
- one
- two
- three
some_more_config:
- one
- two
- three
- four
wheresome_more_config
总是 的超集some_config
。
我想改进这个文件以删除重复但我还没有弄清楚它是否可能或语法是什么:
---
some_config:
- one
- two
- three
some_more_config:
- "%{::some_config}"
- four
用文字而不是代码来说,some_more_config
是整个内容some_config
加一个附加值。