如何为定义类型的通知或订阅设置处理程序?


8

如何在人偶中将处理程序添加到已定义的类型?例如,如果我有:

define foo::bar ($baz) {
 ...
}

我如何拥有处理程序foo::bar来处理包含

...
   notify => Foo::Bar['zippidy']
...

处理程序在收到通知时将在条件逻辑中运行各种Exec。

Answers:


7

您可以通知已在目录中其他位置声明的已定义资源。一个例子呢?

CentOS系统,httpd已安装并停止。经过Puppet 2.7.18测试

$ service httpd状态
httpd已停止

这是一个示例清单,其中包含定义资源类型内的exec资源,该定义资源类型的声明以及通知该定义资源类型的服务资源。

./notify_defined_types.pp

define foo(){

   exec { "${name}_exec":
     command     => "echo hello ${name}",
     path        => '/bin:/usr/bin',
     refreshonly => true,
     logoutput   => true,
   }

}

foo { 'bar': }

service { 'httpd':  
  ensure => running,  
  notify => Foo['bar'],  
}

当我应用此选项时,httpd服务资源中的状态更改会触发对Foo ['bar']资源的通知。此通知将应用于foo定义的资源类型内使用的任何服务或exec资源。

$ puppet apply notify_defined_types.pp 
notice: /Stage[main]//Service[httpd]/ensure: ensure changed 'stopped' to 'running'
notice: /Stage[main]//Foo[bar]/Exec[bar_exec]/returns: hello bar
notice: /Stage[main]//Foo[bar]/Exec[bar_exec]: Triggered 'refresh' from 1 events
notice: Finished catalog run in 0.51 seconds

$ puppet apply notify_defined_types.pp 
notice: Finished catalog run in 0.38 seconds

合理?您只需通知您声明的资源即可。它将触发在定义的资源类型内公开的所有exec或服务资源。


2
你如何做逆?假设我要该服务订阅Foo ['bar']?谢谢
何塞F. Romaniello
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.