Resource Type: wls_safagent
- Defined in:
- lib/puppet/type/wls_safagent.rb
- Providers:
-
simple
Overview
This resource allows you to manage a SAF agent in an WebLogic domain.
Here is an example on how you should use this:
wls_safagent { 'jmsSAFAgent1':
ensure => 'present',
persistentstore => 'jmsFileSAFAgent1',
persistentstoretype => 'FileStore',
servicetype => 'Sending-only',
target => ['wlsServer1'],
targettype => ['Server'],
}
In this example you are managing a SAF agent in the default domain. When you want to manage a SAF agent in a specific domain, you can use:
wls_safagent { 'my_domain/jmsSAFAgent2':
ensure => 'present',
servicetype => 'Both',
target => ['wlsServer2'],
targettype => ['Server'],
}