官术网_书友最值得收藏!

Using inline templates

Templates are a powerful way of using embedded Ruby to help build config files dynamically and iterate over arrays, for example. But you can embed Ruby in your manifests directly without having to use a separate file by calling the inline_template function.

How to do it…

Here's an example of using inline_template:

Pass your Ruby code to inline_template within the Puppet manifest, as follows:

cron { 'chkrootkit':
  command => '/usr/sbin/chkrootkit >
    /var/log/chkrootkit.log 2>&1',
  hour    => inline_template('<%= @hostname.sum % 24 %>'),
  minute  => '00',
}

How it works…

Anything inside the string passed to inline_template is executed as if it were an ERB template. That is, anything inside <%= and %> delimiters will be executed as Ruby code, and the rest will be treated as a string.

In this example, we use inline_template to compute a different hour for this cron resource (a scheduled job) for each machine, so that the same job does not run at the same time on all machines. For more on this technique, see the Efficiently distributing cron jobs section in Chapter 5, Users and Virtual Resources.

There's more...

In ERB code, whether inside a template file or an inline_template string, you can access your Puppet variables directly by name using an @ prefix, if they are in the current scope:

<%= @name %>

If they are in another scope you can reference them using scope.lookupvar, as follows:

<%= "The variable from otherclass is " +
  scope.lookupvar('otherclass::variable') %>

You should use inline templates sparingly. If you really need to do some complicated logic in your manifest, consider using a custom function instead (see the Creating custom functions section in Chapter 8, External tools and the Puppet ecosystem).

See also

  • The Using ERB templates in recipe Chapter 4, Working with Files and Packages
  • The Using array iteration in templates recipe in Chapter 4, Working with Files and Packages
主站蜘蛛池模板: 台江县| 米易县| 柳河县| 枣阳市| 怀仁县| 新龙县| 清苑县| 百色市| 卓资县| 沅陵县| 岳普湖县| 博兴县| 巴中市| 英吉沙县| 五常市| 温州市| 广德县| 绥芬河市| 黄龙县| 奇台县| 和田市| 中卫市| 连山| 神农架林区| 斗六市| 玛沁县| 普定县| 铜梁县| 万州区| 石台县| 河北省| 民县| 孟村| 拜城县| 洪雅县| 遂溪县| 广饶县| 中阳县| 衡水市| 涞源县| 平江县|