Puppet Class: panos::agent
- Defined in:
- manifests/agent.pp
Summary
This resource manages the `resource_api::agent` and the builder gem on an agent.Overview
6 7 8 9 10 11 12 |
# File 'manifests/agent.pp', line 6
class panos::agent {
include resource_api::agent
package { 'builder':
ensure => present,
provider => 'puppet_gem',
}
}
|